Some Clarifications Required

Dear All,
Could anyone clarify the following.
1. How do I set the position of a child window relative to a widget in the parent window?
2. We have an application in which there is an extenisve usage of codes. The codes are created by the users. It is likely that the codes entered donot match the maximum size defined for it. My problem is while retrieving codes which donot match the maximum size defined for it.
For e.g. Customer code CharacterData Size 6
If I enter A00001 and store the record I am able to retrieve the information from the database when I supply the customer code.
If I enter A001 and store the record I am unable to retrieve any information related to the code from the database?I am to state that I have used the methods TrimTrailing and TrimLeading before I invoke the insert.
3. Is there any elegant way exporting project plans as a batch. We have a number of projects defined and it is really time consuming to export each and every plan from the Project Workshop. Is there a way by which a batch file containing fscript / escript / iscript commands can be used to achieve my objective.
Any help on the above queries may be addressed to [email protected]
Thanks in advance
Balasubramaniam Suresh

1. I don't know. Please give more details.
2. If your database is ORACLE use VARCHAR instead of
CHAR in your definition. To retrieve the information
you need the like clause with placeholders to
retrieve it. ('A00001' -> 'A%1'). This answer is
works on ORACLE.
3. Use fscript. Set workspace and Repos. Open the
workspace. exportworkspace.
E.g.:
fscript> setrepos MyRepos
fscript> setworkspace MyWorkspace
fscript> open
fscript> exportworkspace /forte/MyWorkspace.pex
fscript> close
fscript> quit
Write these commands into a file (MyWorkspace.scr).
Start this command with fscript -i MyWorkspace.scr
Hope this helps
Joseph Mirwald
GERMANY

Similar Messages

  • Show ip cef switching statistic output - some clarifications required

    Good morning, everyone!
    I need some clarifications regarding ouput of show ip cef switching statistic on Catalyst 6k and some entries apply to other platforms as well. Consider output:
    #show ip cef switching statistics
           Reason                          Drop       Punt  Punt2Host
    RP LES No route                      179269          0      12866
    RP LES Packet destined for us             0  153061543          2
    RP LES No adjacency                12460594          0          0
    RP LES Incomplete adjacency           10400          0          0
    RP LES Unresolved route                1476          0          0
    RP LES Bad checksum                      17          0          0
    RP LES TTL expired                        0          0   24725338
    RP LES IP options set                     0          0          3
    RP LES Fragmentation failed, DF  1757274333          0     481160
    RP LES Features                         975          0       5278
    RP LES IP redirects                       0          0          7
    RP LES Unknown input if                 192          0          0
    RP LES Neighbor resolution req     32540982       7290          0
    RP LES Total                     1802468238  153068833   25224654
    All    Total                     1802468238  153068833   25224654
    Questions are:
    1) What the difference between rows
    RP LES No adjacency
    RP LES Incomplete adjacency
    RP LES Neighbor resolution req
    2) What the difference between rows
    RP LES No route 
    RP LES Unresolved route   
    3) What does mean collum name - Punt2Host?
    I will higly aprecciate your answers! Thnx in advance.

    So far I partially have found answer on first question.
    RP LES Neighbor resolution req - here counted packets that have no adjacency and they are punted to arp request to send.
    RP LES No adjacency  - after ARP request sent throttling adjacency is installed for this destination for 2 seconds and all subsequent packets get drop.  Those packets are counted here.
    RP LES Incomplete adjacency - here packets counted which matches to incomplete adjacencies. Which are stays in adjacency table marked incomplete - as i understand it can happen after arp entry aged out. But those adjacencies must be deleted as well, but as i can see in my environment some of them stays for a while, i am a bit confused here.

  • Room Reservation feature - Some clarifications required

    Hello
    I am implementing room reservation feature for a business center whereby external tenants will be billed for meeting rooms who already have an office on rent in the same business center.
    The requirement is:
    1. Some of the services in the meeting room may attract discount based on case to case basis i.e. while creating the reservation request, I should be able to modify the price
    2. Invoices have to be issued for the reservation and services cost on periodic basis. Will this be done through RERAIV ?
    3. In our case, certain services are charges on fixed basis and thus created as a condition in the contract. Now the requirement is that, these services should be billed to client along with the reservation cost in one single invoice. As per my understanding, reservation cost has no link to contract master, so how can this be clubbed with conditions getting posted via RERAPP (conditions for the contract).
    Please advise
    Rakesh

    Hi,
    Pls give the error message here.
    Anil

  • Oracle Tele Services Case Management - Some clarification required.

    1. Does Oracle Case Management solution supports De Dup check for suctomer data ?
    2. In case management can we create another case from case work item screen ?
    3. Can we customize case management screens ?

    Hi,
    1. Does Oracle Case Management solution supports De Dup check for suctomer data ?
    ------Duplicate SR check can be implemented in Service Request module (i.e. Form Based Module) based on item/instance/customer using profiles/setup (Check Teleservice implementation guide - 'Setting Up Duplicate Checking'). It cannot be implemented in Case Management module.
    2. In case management can we create another case from case work item screen ?
    ------There iss no out of the box solution given by oracle to create a new cae from existing case. However customiztion can be done for this which will call 'case creation API' to generate a new case.
    3. Can we customize case management screens ?
    -------OAF personalization can be used to personalize case management screens as per business requirement. Refer 'OAF personalization guide_R12' for this.
    Thanks & Rgds,
    Gaurav Joshi.

  • Re: Some Clarifications Required

    How do I set the position of a child window relative to a widget in
    the parent window?If I understand your question correctly, you should be able to set it's
    position by assigning it to a position on a grid on the parent window.
    The widget on the parent window (that you're wanting to position
    relative to) should be in a named grid. Then, you should be able to put
    your window into that grid at specified row and column coordinates. To
    position a widget in a grid, you do something like the following:
    <Widget>.Parent = NIL;
    <Widget>.Row = 1;
    <Widget>.Column = 1;
    <Widget>.Parent = <TargetGrid>;
    I believe that you should be able to do the same thing for a window, too
    (using "Self.Window" instead of "<Widget>"). -- although I didn't
    actually try it.
    Is there any elegant way exporting project plans as a batch. We have a
    number of projects defined and it is really time consuming to export
    each and every plan from the Project Workshop. Is there a way by which
    a batch file containing fscript / escript / iscript commands can be
    used to achieve my objective.Something that you could do here is to make a new workspace that
    includes all the projects that you will be wanting to export. Then,
    after updating this workspace, you can use fscript to export that
    workspace (taking all of the desired projects with it).

    bala wrote:
    2. We have an application in which there is an extenisve usage of codes. The codes are created by the users. It is likely that the codes entered donot match the maximum size defined for it. My problem is while retrieving codes which donot match the maximum size defined for it.
    For e.g. Customer code CharacterData Size 6
    If I enter A00001 and store the record I am able to retrieve the information from the database when I supply the customer code.
    If I enter A001 and store the record I am unable to retrieve any information related to the code from the database?I am to state that I have used the methods TrimTrailing and TrimLeading before I invoke the insert.Bala,
    The behavior that you are experiencing is consistent with a CHAR (fixed
    length character) data type. Try redefining the column to VARCHAR and
    you should get the results that you are expecting.
    Steve Thomas
    [email protected]

  • Reviewed documentation on Reporting: I will appreciate some clarification

    Hi,
    Reviewed documentation on Reporting: I will appreciate some clarification:
    1. Can you help me understand what "Staging" means as used here:
    A data warehouse system serves primarily to stage information from various data source
    The information is staged in various forms including personalized reports, freely definable queries, and predefined reports.
    2. Is RemoteCube the same as Virtual Cubes? if not, what is the difference?
    3. Can you help me understand what "flexible update" means as used here:
    Characteristic InfoObjects have to be included in the InfoProvider tree in the Data Warehousing Workbench to make them available as data targets for flexible updates and as InfoProviders for reporting.
    4. "DataStore Objects are available for transaction data and for master data."
    When do we decide to store master data in a DSO?
    5. Formula Collision vs. "Exception Aggregation"
    I understand what formula collision is about but is it the same as "Exception Aggregation"?
    If not, do you have a real-life example to help me understand the concept of "Exception Aggregation"?
    The documentation/link is not helping.
    6. i. With the followin limitation on Display attribute, why not always make the attribute Navigational?
    "You can show Display Attributes in a report in the drilldown. However, navigation steps are not possible. (For example, you cannot choose values from a display attribute as a filter.)"
    ii. Any example where Nav Attrib does not make sense but it must be Display attrib?
    Thanks

    Hi Amanda,
    2. Is RemoteCube the same as Virtual Cubes? if not, what is the difference?
         Yes, they are one and the same.
    3.Can you help me understand what "flexible update" means as used here:
    Characteristic InfoObjects have to be included in the InfoProvider tree in the Data Warehousing Workbench to make them available as data targets for flexible updates and as InfoProviders for reporting.
    in 3.x, you have infosources and not transformations. So you have basically two types of infosources, direct update and flexible update.
    Direct update infosources do not have any update rules. These are used for master data loading since the format of data is usually fixed as in fields etc.
    Flexible update datasources have update rules, which means that you can use it for loading pretty much anything. You can load master data by changing the update rules and you can use the same infosource for loading transactional data as well. What the statement means is that the infoobject has been set as an infoprovider. and therefore it can be used as a source in a query. The loading is done via flexible updates.
    More info on direct and flexible updates can be found here :[3.x InfoSource Types|http://help.sap.com/erp2005_ehp_04/helpdata/EN/87/3fdf9587f211d5b2ff0050da4c74dc/frameset.htm]
    5)Formula Collision vs. "Exception Aggregation"
    I understand what formula collision is about but is it the same as "Exception Aggregation"?
    If not, do you have a real-life example to help me understand the concept of "Exception Aggregation"?
    The documentation/link is not helping.
    I'm glad that you understand what formula collision is...since its a difficult concept. Exception aggregation is much simpler.
    For every key figure that is present in BW,  there are two types of aggregations that can be maintained.
    Standard: can be sum etc.
    and exception aggregation like avg etc. When you do this, you need to give a reference characteristic. By default this is time. and usually it is summation. Now when you drilldown in your query based on the ref. characteristic, the exception aggregation is used.
    Eg [http://help.sap.com/saphelp_nw70/helpdata/en/d2/e0173f5ff48443e10000000a114084/frameset.htm]
    6.  With the followin limitation on Display attribute, why not always make the attribute Navigational?
    "You can show Display Attributes in a report in the drilldown. However, navigation steps are not possible. (For example, you cannot choose values from a display attribute as a filter.)"
    ii. Any example where Nav Attrib does not make sense but it must be Display attrib?
    Essentially this is a preference or a personal choice basically. You can have several attributes. but keeping all of them as navigational does not help and degrades system performance as they have to be interlinked. For eg.
    You have an employee ID as your characteristic.
    attributes are as follows
    Date of birth
    division
    salary stack
    *** etc
    now things like division,salary stack and  *** could be used as filters in a query but date of birth would in general not be used as filter and hence would make no sense to use it as a navigational attribute(unless you want to find all employees whose birthday is a certain date ).
    In the end, it just comes down to the requirement. If you are required to put a filter on an attribute of master data, then it needs to be a nav. attribute else a display attribute would suffice.
    Hope this helps.
    Regards.

  • Just needed some clarification regarding the Viewer Builder and actually publishing your App...

    If someone could let me know if my understanding is correct, that'd be a huge help... So I've designed my publication in InDesign and exported the .zip file from the Folio Producer. I've created all of my certificates/splash screens/icons. Lastly, I just recently went through the steps of the Viewer Builder. I'm now at the stage of this process that requires me to purchase the $395 single edition so that I can enter the serial number in the last stage of the Viewer Builder. Now, to my knowledge, once I get the serial number, Viewer Builder will then give me access to an .ipa file and a .zip file. The .ipa file is for me to test on my iPad, and the .zip would be used to distribute to the App Store. I guess this is where I get confused... Let's say after I test the .ipa on my iPad, I don't like some part of my publication. I know how to update my own documents obviously, and I understand that I would have to export another .zip file from the Folio Producer, in turn requiring me to edit the exported folio link in the Viewer Builder. If I had to do that, would I need to purchase another single edition serial number since the original App was edited? Or would the same serial number apply since I'm editing that same App in the Viewer Builder? My next question is somewhat similar. Let's say all of the information is up to date and I go ahead and publish the App to the App Store. However, maybe a month later or some time in the future, I needed to update a phone number or email address--some little detail like that. Again, I understand that I'd have to update the export link in the Viewer Builder, but would I then need to create a new app since my app was already published? Would I then have to purchase another $395 single edition serial number just so that I can update my information? This seems to be the only thing in this whole process that I could use some clarification on so that I don't run into any surprises in the future. Any help would be great, thanks!

    Hi Joshua,
    When you have purchased the serial, you can rebuild your app with your updated content, as long as you use the same bundleID (applicationID), that is tied to your Apple mobile provisioning profile. The serial number is valid for a one year period.
    After you have submitted your app to Apple and it has been approved, please read: http://forums.adobe.com/message/4172167#4172167
    With kind regards,
    Klaasjan Tukker
    Adobe Systems

  • I cannot get GPS Only to work on my ipad3 (4g version, but not on an active cell plan, and wifi off).  Is there some new requirement in 7.1 or 7.1.1 to have cell and/or wifi enabled for GPS to work? I am testing with MotionX

    It seems like I cannot get GPS only to work on my ipad3 (4g version, but not on an active cell plan, and wifi off).  Is there some new requirement in 7.1 or 7.1.1 to have cell and/or wifi enabled for GPS to work? I am testing with MotionX, garmin blueChart mobile, and a GPS monitoring tool. All show no signal. If I turn on cell and wifi,  it says I get gps signal, but can't tell if that is from the GPS chip, or just from cell and wifi only (maybe with some gps mixed in)?  Any ideas on how to get iPad working with GPS only??

    Roger that.  Thanks for your time.
    System:
    Windows 7 64bit
    Processor: AMD phenom IIX4 965
    RAM:  Gskill Ripsaw F3-12800CL7D-4GBRM (2-2GB sticks)
    GPU:EVGA Classified Nvidia GeForce GTX 560 Ti 448 core
    PSU: Kingwin 1000W laser gold (LZG-1000)
    Yes. tried the one ram stick, no go.  I have been trying to boot off/install the windows 7 disk but am unable to get to the point where windows starts installing after its gathering information portion of the install.  I can get to the disk selection screen of the install with the WD HD on SATA port 2 but then get the "cant install messages" when I try to select the Vertex 3.  Yes I can see the Vertex 3 Drive as well as the WD drive at this point.  some times I have to hit "scan" a couple of times.

  • Need some clarification on Replacement Path with Variable

    Hello Experts,
    Need some clarification on Replacement Path with Variable.
    We have 2 options with replacement path for characteristic variables i.e.
    1) Replace with query
    2) Replace with variable.
    Now, when we use  "Replace with variable" we give the variable name. Then we get a list for "Replace with" as follows:
    1) Key
    2) External Characteristic Value Key
    3)Label
    4)Attribute value.
    I need detailed explanation for the above mentioned 4 options with scenarios.
    Thanks in advance.
    Regards
    Lavanya

    Hi Lavanya,
    Please go through the below link.
    http://help.sap.com/saphelp_nw70/helpdata/EN/a4/1be541f321c717e10000000a155106/frameset.htm
    Hope this gives you complete and detailed explaination.
    Regards,
    Reddy

  • Some apps require Adobe Flash; however, when I try to inst all, get message saying my iPad (version 7.0) can't support Adobe Flash, so can't access. Any way around this?en I attempt to install, get message that my iPad cannot support such.  I have a

    Some apps require Adobe Flash; however, when I attempt to upload the program, I receive message to the effect that my iPad (version 7.0)  cannot support Adobe Flash, so I am unable to view some attachments sent.  I just bought my iPad recently and am still figuring everything out. If there is some solution to my problem, I would appreciate being advised. Thanks.

    https://discussions.apple.com/thread/5461191?tstart=0

  • ITunes (11.3 64bit) cannot run because some its required files are missing. Please reinstall iTunes.

    just set up my new laptop lenovo x240.
    Windows 7 SP1.
    itunes 64bit 11.3
    first install went fine. then I tried to move my preexisting library. the library did not show the apps. so I tried around. Treid to re-install itunes.
    Since I did, after the re-install, iTunes gives me the error message "iTunes cannot run because some its required files are missing. Please reinstall iTunes."
    I tried the  -_> link: Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    unfortunately it did not resolve. please, advise... I am quite desperate... and surprised this is happening, since I am on a clean corporate laptop.
    perhaps, can someone also steer me to a corner, where I can deactivate the cloud install pop-up ones starting iTunes?

    See the advice given in the user tip:Troubleshooting issues with iTunes for Windows updates for a very workable approach.

  • Need some clarifications on Quality-of-services

    Hi Everybody.
                       I need some clarification on Quality-of-services.the question is which one is better in Quality-of-services (Exactly-Once or Exactly-Once-In-order)?why?wht is the differenc between them?

    Hi Narayana
    refer the below Urls
    make the QOS of file as EO or EOIO and then use this blog,
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit
    It depends upon the Adapter,Can you please spicific
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/41/b714fe5ffc11d5b3ea0050da403d6a/content.htm
    Check these blogs written on QoS:
    XI Asynchronous Message Processing: Understanding XI Queues
    How to deal with stuck EOIO messages in the XI 3.0 Adapter Framework
    EO = Exactly Once ( Used in Asynchronous Communication)
    EOIO = Exactly Once In Order ( Used in Asynchronous Communication)
    BE = Best Effort ( Used in Synchronous Communication)
    Best Effort --> Used for Synchronous Calls.
    EO and EOIO --> Asynchronous Calls.
    EOIO --> Asynchronous with Sequential Processing Guranteed.
    http://help.sap.com/saphelp_nw04/helpdata/en/41/b714fe5ffc11d5b3ea0050da403d6a/frameset.htm
    For the QOS, u can refer the following library links .
    http://help.sap.com/saphelp_nw04/helpdata/en/41/b714fe5ffc11d5b3ea0050da403d6a/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ae/d03341771b4c0de10000000a1550b0/frameset.htm
    For receiver channels QoS BE (Best Effort) will result in a
    synchronous call (sRFC) , QoS EO (Exactly Once) will create a
    transactional call (tRFC) to the BC. For sender channels a synchronous
    call (sRFC) will result in a message with QoS BE, a transactional call
    (tRFC) will result in a message with QoS EO.
    QoS EOIO is not supported by the BC-Adapter.
    SAP XI term Quality of service describing how the transmission and process-ing of messages is to be handled. Possible values are:
    BE = BestEffort (synchronous call, no transactional guarantees for transmission and processing)
    EO = ExactlyOnce (asynchronous call, guarantee for local transactional handling, exactly-once transmission and exactly-once processing)
    EOIO = ExactlyOnceInOrder (as for EO but with serialization guarantee on a given queue name).
    <b>Pls reward if useful</b>

  • When i try to watch any movie or songs on youtube is s show me this error some plugins required by this page have been blocked for your protection

    when i try to watch any movie or songs on youtube is s show me this error
    some plugins required by this page have been blocked for your protection
    and when i check fire fox ads -on it show me shockwave flash 10.3 r183 disable and i m unable to unable it how i can unable it? plz send me suggestion on [email protected] thx
    i need to unable 10.3 r183 plug from ads-on but its disable and no button to unable it

    See also http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html
    You can find the last Firefox 3.6.x release in all languages and for all Operating Systems here:
    *Firefox 3.6: http://www.mozilla.org/en-US/firefox/all-older.html

  • Clarification required on the Sales area data information.

    Hi Master's,
    As per the standard taxation practice,Tax determination depends upon the Tax liability of a Shipt to Party.
    But in a Customer master The Tax classification is maintained in the SALES AREA DATA-BILLING TAB,To my understanding
    the Billing Tab data comes from Sold to party.If so how does Billing tab convey the Tax liability of Ship to party.
    I am Confused,please let me know in terms of Customer master and Partner types:
    1) Which Tabs under the sales data  i.e Shipping Billing...come from which Partner.i.e like Sold to party.
         (Clarification required on the Sales area data information coming from which Partner functions).
    Please suggest,
    Thanks
    Gajender

    Hi
    As per the standard taxation practice,Tax determination depends upon the Tax liability of a Shipt to Party.
    But in a Customer master The Tax classification is maintained in the SALES AREA DATA-BILLING TAB,To my understanding
    the Billing Tab data comes from Sold to party.If so how does Billing tab convey the Tax liability of Ship to party.
    I am Confused,please let me know in terms of Customer master and Partner types:
    1) Which Tabs under the sales data i.e Shipping Billing...come from which Partner.i.e like Sold to party.
    (Clarification required on the Sales area data information coming from which Partner functions).
    There is no need of any confusion here
    All the tabs and data or fields pertains sold to party only
    If for a sold to party say 1001 if he himself is going to be SH and PY and BP then there is no confusion
    If  for a sold to party say 1001 the ship to party is 1002 and PY is 1003 and bill to party is himself that is 1001
    This is what mentioned  or assigned in the partner functions of CMR of 1001 in the sales area data
    This means there are another CMR lies in the name of 1002 and 1003
    Whenever an order comes for 1001 as Sold to party for tax classifications the ship to paty 1002's master record is accessed by the system
    System accesses another record for a particular detail (tax details)
    Similarly for this customer 1001's order for payment terms 1003's CMR is accessed by the system
    System accesses another record for a particular detail ( for terms of payment)
    There is no need for any confusion and if you run this in the system with different data you will understand it much better
    Regards
    Raja

  • Some clarifications regarding Aironet settings

    Hi,
    i need some clarifications regarding configuring Aironet stand-alone AP (in this case AIR-LAP1131AG).
    Under Security->SSID Manager:
    what is the purpose of Network ID?
    Under Guest Mode/Infrastructure SSID Settings - what is the purpose of Set Infrastructure SSID?
    and Force Infrastructure Devices to associate only to this SSID?
    Cheers,

    Assign a Service Set Identifier (SSID) to each VLAN configured on the AP. SSIDs enable endpoints to select the wireless VLAN they will use for sending and receiving traffic. These wireless VLANs and SSIDs map to wired VLANs. For voice endpoints, this mapping ensures priority queuing treatment and access to the voice VLAN on the wired network
    For further information click this link,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/srnd/4x/42nstrct.html#wp1098806

Maybe you are looking for

  • Restoring MBP with Time Machine but apps are missing

    Hi, I have multiple problems, so I'll keep it brief. RAM failed on my early 08 MBP. It corrupted the parttion thing and wiped my HDD. Nice. Apple replaced RAM & HDD under warranty. Have data backed up using Time Machine, but not the apps (I thought I

  • Mapping trouble

    Hi all, Iam stuck with a  mapping problem and need Help!!! :). Would be grateful if someone could give me a hand on this. In The picture depicted below is the first problem: http://i42.tinypic.com/2epn3lt.jpg For Every occurance of "E1EDPT1",I want t

  • Hotspot spotty

    I have an iPhone 4 and a hotspot account.  But the hotspot service is "spotty."  That is, it sometimes works with my iPad, and sometimes does not.  Same thing with the Bluetooth and WiFi connections.  Sometimes they work, and more often they do not w

  • How to show the target of the events

    In the Activity Sequence there's a list of functions and usually one of them is "enterFrame" or "render". Is there a way to see who's creating that event?

  • URGENT : can't boot !!!!!

    Hello, I have a white macbook 2.0ghz and after my last restart , i couldn't boot it back So here's what happened : I was in my little room on my campus doing my paper and concentrating every fiber of brain on the kant's problem of sublime jugement .