Using Key-exeqry to populate block, next_record draws FRM-41009

I am using web forms 6.0.8.18.3 (6i patch9) and 10g database
I am making a new form from another very similar screen
but presenting format as child to parent view of data
(reversing similar screens parent to child format)
The new screen has 2 t tabs, 2 blocks per tab(not master/detail)
I want to preserve the prior form’s same
Query_data_source_name block property selects (if possible)
(This preserves the enter-query/execute query on the block(works fine)
I want to populate a tabular(table based) block(query only)
based on user entering a number (child) returning one or many rows
(the first field is enterable (control number)and the rest are display)
goal: so the user can query by number field and get child/parent data.
I can do a direct ‘select into’ the fields and create one record ok.
But fails if to_many_records, returns(error)
That’s why I need the cursor/loop/fetch/next_record set up
To return many records.
In a proc called by a key_exeqry trigger to populate the block,
I am using next_record in my loop but get FRM-41009
How can I achieve this via a key_exeqry?
if not
is there a way to ‘break away from the key_exeqry’,
do the loop(in a place where I will not draw a error)
based on passed parameters to populate the block?
Here is my block/Key-exeqry logic --(not ideal)
If entered field is null then
Null; --allows f7/f8 full query usin query data source name(ok)
Elsif not null
Do validate select-–validate number with select
If no data found error message(ok)
If to many rows then
Call multi record loop proc
Do the multi record procedure(program unit)cursor select/loop/fetch(fails /no next_record allowed!)
I am rotating through the loop and land on last record
(The problem is the next_record is not allowed.)
If field not null and a flag not on(=N)
Call single_record_populate procedure(select into) (works fine-ok)
End if;
I saw A. Weiden post that ‘key-exeqry fires only once for the query,
so you won’t have a chance To do a per-record operation in it’.
(so there is a better way)
But Is there any way to do this--do a block populate(with loop) based on a key-exeqry trigger?
(75% of srcreen requirements work ok so far)
Thanks.
here is actual KEY-EXEQRY code
declare
v_parent_mode_id number;
v_ep_num varchar2(4);
v_ep_description varchar2(120);
v_cd_Id number;
v_cd_capture_percent number(6,3);
dummy_alt number;
v_error_flag varchar2(1);
action varchar(80);
p_out_parent_mode_id number(10) := v_parent_mode_id;
p_out_cd_Id number(10) := v_cd_Id;
p_out_ep_num varchar2(4) := v_ep_num;
p_out_cd_Id_Num varchar2(4) := :emission_points.cd_id_num;
begin
v_error_flag     := 'N';
if (:emission_points.cd_id_num is null) then
execute_query;
v_error_flag := 'Y';
elsif
(:emission_points.cd_id_num is not null) then --validate check if entry(chld) exists under parent
begin
     select parent_mode_id, cd_id, cd.capture_percent, ep.num
into v_parent_mode_id, v_cd_id, :emission_points.capture_percent, v_ep_num
FROM EMISSION_POINTS EP,
EP_MODES EPM,
CAPTURING_DEVICES CD,
CONTROL_DEVICES CDT
WHERE EP.ID = EPM.EP_ID AND
EPM.ID = CD.PARENT_MODE_ID AND
CD.CD_ID IS NOT NULL AND
CD.PARENT_MODE_ID IS NOT NULL AND
CD.STACK_ID IS NULL And
cd.fac_id = :FACILITIES.ID and
cd.cd_id = cdt.id and
cdt.num = :emission_points.cd_id_num;
exception
when no_data_found then
disp_warn('Control number '||:emission_points.cd_id_num||' does not exist under parent points for id_number '
||:facilities.scr_fac1);
raise form_trigger_failure;
v_parent_mode_id := null;
v_cd_id := null;
:emission_points.capture_percent := null;
v_ep_num := null;
when too_many_rows then
v_error_flag := 'Y';
--process for multiple records returned
populate_emission_points(p_out_parent_mode_id, p_out_cd_Id, p_out_ep_num, p_out_cd_Id_Num);
end;
end if;
if (:emission_points.cd_id_num is not null) and v_error_flag = 'N' then
     DISP_WARN(':emission_points.cd_id_num=>'||:emission_points.cd_id_num||' v_error_flag=>'||v_error_flag);
--process for single record returned
emission_points_record;
end if;
end;
Edited by: Doug Galayda on Apr 16, 2009 12:36 PM

1. This is really why I did it in pieces:
2. Whole query does work
1.The form previously has a existing form-clause-query
When I put a whold valid select in
It attaches ‘the new from clause qeury’ on to the select.
Select item1, item2, item3
From(select item1, item2 <<my new from clause
I see this effect in a :system.last_query display.
I can’t ignore the properties already there.
They add themselves to(or around) what ever I put into
A new from clause query statement.
So since I have a existing from clause query that says
Select id, fac_id, num, parent_mode_id, cd_id, description, capture_percent
From
What ever I put into a SET_BLOCK_PROPERTY becomes this
Select id, fac_id, num, parent_mode_id, cd_id, description, capture_percent
From( my new set_block_property here
In other words if you had a existing select from clause
And you put a whole select in your substitute from clause query
And you put a :system.last_query display in your key-exeqry immediately
After your set_block_property command
You are in fact replacing the from clause with that statement
(what you put in the statement will follow a ‘from’.
I thought I was doing the correct thing:
The pieces added up to looking correct to, but did not work!
(I can’t get the real :bind value passed in to the join.)
2. You are right when I put the whole query in there
It does work, but only when I use a literal ‘’0031’’ in double quotes,
but I cannot get the bind variable to be ‘seen’
In the set_block_property
I can see my user entered field value as 0031 in a display before the
Set block property is fired.
I need a value of 0031 in a bind variable for the query to work.
And that’s what I am working on.
SET_BLOCK_PROPERTY('EMISSION_POINTS',QUERY_DATA_SOURCE_NAME,
'(SELECT C.ID, A.ID EP_ID,A.FAC_ID,A.NUM,A.DESCRIPTION,C.PARENT_MODE_ID,
C.CD_ID,C.CAPTURE_PERCENT,C.CAPTURE_METHOD,C.DATE_TESTED
FROM EMISSION_POINTS A,
EP_MODES B,
CAPTURING_DEVICES C,
CONTROL_DEVICES CD
WHERE A.ID = B.EP_ID AND
B.ID = C.PARENT_MODE_ID AND
C.CD_ID = CD.ID AND
C.CD_ID IS NOT NULL AND
C.PARENT_MODE_ID IS NOT NULL AND
C.STACK_ID IS NULL and
cd.num = ''0031'')');
Steve Cosner replied to my first post
How can I pass a variable into a Query Data Source Name select's join?
Use one of these:
and cd.num = :Blk_name.Pass_cd_Id_num
and cd.num = :Parameter.Pass_cd_Id_num
and cd.num = :Global.Pass_cd_Id_num
Any one of the above would work. I would use either a hidden item in a control block, or a form parameter.
The sql select you build in the query-data-source name is passed
directly to Oracle for execution, and PL/SQL variables cannot be "seen" by the database.
Instead, you pass a bind variable (note the leading colon),
and Forms then knows to pass the value or location of the bind variable so Oracle can use it.
SET_BLOCK_PROPERTY('EMISSION_POINTS',QUERY_DATA_SOURCE_NAME,
'(SELECT C.ID, A.ID EP_ID,A.FAC_ID,A.NUM,A.DESCRIPTION,C.PARENT_MODE_ID,
C.CD_ID,C.CAPTURE_PERCENT,C.CAPTURE_METHOD,C.DATE_TESTED
FROM EMISSION_POINTS A,
EP_MODES B,
CAPTURING_DEVICES C,
CONTROL_DEVICES CD
WHERE A.ID = B.EP_ID AND
B.ID = C.PARENT_MODE_ID AND
C.CD_ID = CD.ID AND
C.CD_ID IS NOT NULL AND
C.PARENT_MODE_ID IS NOT NULL AND
C.STACK_ID IS NULL and
cd.num = :emission_points.cd_id_num)');
The bind variable :emission_points.cd_id_num in the above
set block property statement appears as its :bind variable name :emission_points.cd_id_num
This fails with frm-40505.
The key problem now it to get the :bind value to be ‘seen’ in the statement.
Thank you so much.
I appreciate your time and help.

Similar Messages

  • KEY-EXEQRY trigger and FROM CLAUSE QUERY problem

    Hi,
    I have a form designed in Oracle Forms6i. I have two block on it, BlockA and BlockB.
    When BlockA is queried with some data to search, I need to build the FROM CLAUSE QUERY for BlockB. It uses the same WHERE condition as I used to search BlockA.
    I am building the FROM CLAUSE QUERY and executing query for BlockB on KEY-EXEQRY trigger of BlockA.
    It works fine, if first time, I query the BlockA without any specific data. But it gives me error 'ORA-01008: not all variables bound' if I query the BlockA with specific data very first time.
    Please advise.
    Thanx
    Zaaf

    No, I am not using any substitution variables. To get the LAST_QUERY for BlockA, I am using Get_Block_Property.
    But now I switched it to :system.LAST_QUERY and it worked.
    Thank you!

  • Is using key events really that hard?

    I am trying to implement a keyListener for my application, and it seems
    way harder than it should be. My application is simple: A JFrame
    with one button and one JPanel upon which I draw. When I click
    in the JPanel and type, I want things to happen.
    After much looking, it seems I have to not only implement KeyListener,
    but also MouseListener, so when the mouse enters I can call
    requestFocusInWindow().
    That seems to work sometimes, but not when I leave and come back,
    and not always when the application first appears.
    So do I also have to implement FocusListener?
    Why is this so hard to do? MouseListener is very easy to implement,
    but KeyListener seems to be a huge pain in the butt.
    Can someone point me to a simple tutorial or example that just
    has a few swing elements, and processes key events?
    I feel like with Java I often try enough things until it finally works,
    and never really understand why, and what it was that fixed it.
    The documentation and API does not fully describe everything one
    needs to know to use the API "properly". Am I the only one frustrated
    by this? I have programmed in Java/Swing for years, and JUST LAST
    WEEK discovered that when implementing paint in swing, one should
    override paintComponent and not paint. But then why does overriding
    paint usually work? There are too many quirks in Java that let you
    get away with doing things wrong, and then suddenly, your application
    is broken. It wouldn't be so bad if the API was more clear on some of
    these suble issues.
    Thanks,
    Chuck.

    How to Use Key Bindings

  • I am trying to copy and paste a work document into my online class. POP up states that Cut, Copy, and Paste are disabled by my Modzilla broser and that I could use key board short cuts or visit the website.

    '''bold text'''Want to copy & paste word doc onto my online class discussion post. Unable to. I either need directions on how to use key board short cuts. I have visited the Modzilla web site like it also stated but am unable to find an answer to this.

    See:
    *http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard
    *https://addons.mozilla.org/firefox/addon/allowclipboard-helper/

  • Passing Parameters using key mapping in web envirnment

    if I use the url for passing parameters directly to report as
    http://appserver/dev60cgi/rwcgi60?report=inv.rep+server=server=repserver+userid=scott/tiger@db+param1=1+param2=2+DESTYPE etc;
    it works fine but Now the problem is I m using key mapping to hide username and password for this the url is
    http://appserver/dev60cgi/rwcgi60?mapkey+report=inv.rep+server=repserver+param1=1+param2=2;
    where mapkey is defined in CGIcmd.dat file as
    mapkey := scott/tiger@db
    I have checked by rearranging the order of paramerters but still get error.
    Oracle Reports Server CGI - Reports Server name is not specified.
    but I m mentioning the server name as server=repserver
    Hope to get it soon
    Thnx in advance

    You key defined in the cgicmd.dat file should be:
    mapkey := userid=scott/tiger@db *
    You need parameter name 'userid=' before scott, and need space character and '*' in the line. Without '*', cgi won't take any more parameter from the URL after the key, so '+report=inv.rep+server=repserver+param1=1+param2=2' is ignored if there is no '*' for mapkey.

  • Combine two reports in query designer using key figure with sap exit

    Hi experts,
    i want to combine two reports in query designer using key figure with sap exit
    in the report 1 key figure calculation based on the open on key date(0P_DATE_OPEN)
    to calculate due and not due in two columns
    in report 2 key figure calculate in the time zones using given in variable Grid Width (0DPM_BV0) like due in 1 to 30 days, 31 to 60 days...the due amount based on the open on key date(0P_DATE_OPEN)
    to calculate in 1-30, 31-60, 61-90, 91-120, 121-150 and >150 days in 6 columns
    now i have requirement like this
    not due, 1-30, 31-60, >60, due,1-30, 31-60, >60 in 8 columns
    or
    not due, due, 1-30, 31-60, 61-90, 91-120, 121-150 and >150 in 8 col
    thank you

    Hi Dirk,
    you perhaps know my requirement,
    for the management to make used in one report,
    we have in reporting finacials Ehp3.
    Vendor Due Date Analysis - which show due, not due
    Vendor Overdue Analysis - show only due and analysis in time grid frame
    i want to combine in one report that show NOT DUE, DUE, DUE time frames in grid.
    krish...

  • How to use to use rank over() function in block coding

    Hi,
    I am having problem with using rank () over function in block coding. I can't use it in declaration section with select statement.
    How to use in executable section of pl sql ?
    --Sujan                                                                                                                                                                                                                                                                                                                                                                                                           

    thanks

  • Using key position to lock navigation when you scroll to bottom on tablet page starts to zoom.

    Using key position to lock navigation in place after scrolling, this portion works but when you scroll to the bottom the page starts to zoom. I have narrowed it down to the key positioning by eliminating everything else on a fresh page. Sam Friedman [Adobe Muse] - any thoughts on this?

    Hi - sorry for the delayed response, I've been on vacation. Do you have a published example you could show me?

  • Why use key-partitioning and key-associator features?

    Why use key-partitioning and key-associator features?
    What kind of applications are suitable for using key-associator and key-partitioning features?
    Could you give me some example?
    Thank you

    So the typical way is to use KeyAssociation. This is a single interface that uses a method
    public Object getAssociatedKey();
    I believe this works on the ClusterService level (rather than say the Cache). So, say you have a Client and an Account cache where a Client can have multiple Accounts. Now both the Client and the Account object will implement KeyAssociation and return the client object as the AssociatedKey. This will cause these associated objects to live on the same partition.
    Now you can do some clever tricks since you know these are on the same partition. These include using the BackingMap and EntryProcessors / InvocationService / Aggregators to return all the AccountIds associated with a client account (essentially a join).
    Unfortunately, these are pretty advanced Coherence features so it is worth building them in a testcase first and getting them to work before you integrate them into your application.
    Best, Andrew.
    PS. You could also use the KeyPartitioningStrategy, but I prefer the KeyAssociation (as do most people).

  • Error using keyed archiving on iPhone

    Hi
    I am trying to archive an object using keyed archiving. I have managed to successfully create the archive, but attempts to load it results in the following error:
    'NSInvalidArgumentException', reason: '* -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0xffffffce, 0xfffffffa, 0xffffffed, 0xfffffffe, 0x7, 0x0, 0x0, 0x0)'
    The code:
    path = [[NSBundle mainBundle] bundlePath];
    finalPath = [path stringByAppendingPathComponent:@"DataStore"];
    - (void)saveArchive {
    NSMutableData *data;
    NSKeyedArchiver *archiver;
    BOOL result;
    data = [NSMutableData data];
    archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
    [archiver encodeObject:myDataStore forKey:@"DataStore"];
    [archiver finishEncoding];
    result = [data writeToFile:finalPath atomically:YES];
    [archiver release];
    - (void)loadArchive {
    NSData *data;
    NSKeyedUnarchiver *unarchiver;
    data = [NSData dataWithContentsOfFile:finalPath];
    unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data];
    myDataStore = [unarchiver decodeObjectForKey:@"DataStore"];
    [unarchiver finishDecoding];
    [unarchiver release];
    Any help would be appreciated please

    Solved. Can only write to documents or temp directory on iPhone

  • To create Dynamic Selection screen using Key Fields

    Hi All,
    We have a requirement where we want to create Dynamic selection screen using Key fileds of Z-table or any standard table.
    Please provide some solution if you have worked in this area.
    Thanks in Advance,
    Anand Raj Kuruba

    Hi,
    You can use the following statement.
    SELECTION-SCREEN DYNAMIC SELECTIONS FOR NODE|TABLE <node>.
    declares a node <node> of a logical database for dynamic selections in the selection include.
    To use the dynamic selections in the SELECT statements of the subroutine PUT_<node>, you must use the data object DYN_SEL. The data object DYN_SEL is automatically generated in the logical database program as follows:
    TYPE-POOLS RSDS.
    DATA DYN_SEL TYPE RSDS_TYPE.
    You do not have to program these lines yourself. The data object DYN_SEL is available in the database program but not in a connected executable program.
    The type RSDS_TYPE of the data object is defined in the type group RSDS as follows:
    TYPE-POOL RSDS.
    WHERE-clauses ------------------------------
    TYPES: RSDS_WHERE_TAB LIKE RSDSWHERE OCCURS 5.
    TYPES: BEGIN OF RSDS_WHERE,
    TABLENAME LIKE RSDSTABS-PRIM_TAB,
    WHERE_TAB TYPE RSDS_WHERE_TAB,
    END OF RSDS_WHERE.
    TYPES: RSDS_TWHERE TYPE RSDS_WHERE OCCURS 5.
    Expressions Polish notation ---------------
    TYPES: RSDS_EXPR_TAB LIKE RSDSEXPR OCCURS 10.
    TYPES: BEGIN OF RSDS_EXPR,
    TABLENAME LIKE RSDSTABS-PRIM_TAB,
    EXPR_TAB TYPE RSDS_EXPR_TAB,
    END OF RSDS_EXPR.
    TYPES: RSDS_TEXPR TYPE RSDS_EXPR OCCURS 10.
    Selections as RANGES-tables -----------------
    TYPES: RSDS_SELOPT_T LIKE RSDSSELOPT OCCURS 10.
    TYPES: BEGIN OF RSDS_FRANGE,
    FIELDNAME LIKE RSDSTABS-PRIM_FNAME,
    SELOPT_T TYPE RSDS_SELOPT_T,
    END OF RSDS_FRANGE.
    TYPES: RSDS_FRANGE_T TYPE RSDS_FRANGE OCCURS 10.
    TYPES: BEGIN OF RSDS_RANGE,
    TABLENAME LIKE RSDSTABS-PRIM_TAB,
    FRANGE_T TYPE RSDS_FRANGE_T,
    END OF RSDS_RANGE.
    TYPES: RSDS_TRANGE TYPE RSDS_RANGE OCCURS 10.
    Definition of RSDS_TYPE
    TYPES: BEGIN OF RSDS_TYPE,
    CLAUSES TYPE RSDS_TWHERE,
    TEXPR TYPE RSDS_TEXPR,
    TRANGE TYPE RSDS_TRANGE,
    END OF RSDS_TYPE.
    For more information, please check this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/67/93b80914a911d2953c0000e8353423/content.htm
    Regards,
    Ferry Lianto

  • Focus problem using key event

    Hi!
    There is an application I've created uses key event that needs your help.
    As you know, that setting 'Mnemonic' to a JButton object makes the button accessible by a key mentioned in the parameter as the following ->
                   OkButton.setMnemonic(KeyEvent.VK_O);Now, pressing 'Alt' and 'O' keys together will do the same action as the 'OKButton' does.
    But as of me, I think pressing two keys together is not a complete handy job.
    So, is there any code that will do the same, by pressing only the 'O' key ?
    Ok! I know that there is something to be taken care of; that is, if I want the button to react by pressing only the 'O' key the button must be in focus [value returned by the method [code]isFocusable() for the button must return true.]
    Then how the 'Mnemonic' works ?!! When 'Mnemonic' do something, button does not have any focus.
    Only, I press the Alt+O and the work done successfully! No need to take care wherever the focus is. So, is there any way to do alike, where I don't have to manage the focus subsystem?? I would only press the 'O' key and the task will be done.
    Please send a sample code. Thanks!

    I suggest you look into Key Bindings:
    "How to Use Key Bindings"
    http://java.sun.com/docs/books/tutorial/uiswing/misc/keybinding.html
    Here is a short demo program that uses Key Bindings to do what you describe:
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.*;
    public class PressOTest extends JFrame {
        public PressOTest() {
            super("Press O or C");
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            // Action that will be associated with the OK button and with
            // the 'O' key event
            Action okAction = new AbstractAction("Ok") {
                public void actionPerformed(ActionEvent e) {
                    JOptionPane.showMessageDialog(PressOTest.this, "Ok!");
            // Action that will be associated with the Cancel button and with
            // the 'C' key event
            Action cancelAction = new AbstractAction("Cancel") {
                public void actionPerformed(ActionEvent e) {
                    JOptionPane.showMessageDialog(PressOTest.this, "Cancel!");
            // Register Key Bindings for the 'O' and 'C' keys:
            InputMap im = getRootPane().getInputMap(
                    JComponent.WHEN_IN_FOCUSED_WINDOW);
            ActionMap am = getRootPane().getActionMap();
            im.put(KeyStroke.getKeyStroke( KeyEvent.VK_O, 0 ), "ok");
            am.put( "ok", okAction );
            im.put(KeyStroke.getKeyStroke( KeyEvent.VK_C, 0 ), "cancel");
            am.put( "cancel", cancelAction );
            // Create and add OK & Cancel buttons:
            JButton okButton = new JButton(okAction);
            JButton cancelButton = new JButton(cancelAction);
            Box box = Box.createHorizontalBox();
            box.add( Box.createHorizontalGlue() );
            box.add( okButton );
            box.add( Box.createHorizontalStrut(10) );
            box.add( cancelButton );
            box.add( Box.createHorizontalGlue() );
            getContentPane().add( box );
            setSize(300, 300);
            setLocationRelativeTo(null);
        public static void main(String[] args) {
            new PressOTest().setVisible(true);
    }

  • Scrolling of dinamani site in firefox using key board not properly configured?

    scrolling of dinamani site in firefox using key board not properly configured?
    by using down arrow i am unable to scroll
    instead it goes to end of page
    previously ie. about 4-5 months back this problem was not there

    You may have switched on caret browsing.
    * http://kb.mozillazine.org/accessibility.browsewithcaret
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    * Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    * http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    * http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • How to use From clause as a block datasources

    Hi,
    I want to know how to use from clause as a block datasource.
    Could anyone give me an example to do that? I couldn't find it
    in the help file.
    I sincerely ask someone help me.
    Many thanks
    Diana

    Diana,
    I presume you are getting a "FRM-40505: error unable to perform
    query" when you try to execute query. I suggest you select the
    "Display Error" item from the "Help" menu to see the query that
    Oracle is generating. If the query that Oracle generates as a
    result of your "Query data source name" is not formed correctly,
    you will get the FRM-40505 error.
    Copy and paste the query that is displayed into SQLPLUS and test
    to see what happens when you try to execute the query from
    SQLPLUS. That will give you a better idea of what the cause of
    the problem is.
    From your example, a query that works should look like "select
    c_no from (select c_no from books)".
    Keep in mind that for blocks based on FROM clause, the query that
    produces the data is of the form :
    SELECT <all columns in the block>
    FROM <select statement entered in the "Query Data Source Name"
    blockproperty>
    The data source for the block is the select statement embedded in
    the from clause.
    Hope this helps.

  • Who can I update primary key field in master block

    Hi,
    I want to update the primary key field in master block when there are some records are present in detail block, when I edit the primary key filed there is an error FRM-40509 unable to update record. The primary key is also referred by the detail table.
    So kindly give me the solution who can I update the primary key in master block when there is child records exists in detail block?.
    Best regard,
    shahzad

    pls tell us a little more about, why you want to update a PK in a master block.
    I haven't done that my whole time. Maybe you need something different.
    The problem is, that your child-data references to the master-pk, so there is the point you have to go deep into the codings. But better don't do it. Tell us first why. I think there are other solutions for that.
    try it
    Gerd

Maybe you are looking for

  • A/R Invoice amount splited into 2 different posting periods

    Dear forum members, Is there a way to split an A/R invoice into 2 different posting periods? The Scenario example is as follows: My customer issues invoices on a 15 days base, i.e., every 15 days they issue an invoice to the customer, corresponding t

  • Advice on creating a central store

    Hi, just after a bit of guidance. I want to make Office 2013 templates available to all administrators using GPMC. I have read about creating a central store for administrative templates. However some of the guides I have found say: " Every policy th

  • J2EE not starting up

    Dear Experts, we have an issue with J2EE startup in solution manager. the java instance is not starting up. please find the logs below, please prvide your suggestions. dev_bootstrap: trc file: "dev_bootstrap", trc level: 1, release: "720" node name  

  • Visually handicap, needs to increase font size in logic pro, Command  doesn't work

    Hi,      I'm visually handicapped, and new to logic-pro.  I'm having a miserable time reading the internal logic-pro fonts.  Command + doesn't work, and I can't find any preferrence or settings options that affect the default font sizes, any ideas?

  • Button to hide/show regions

    I need to hide/show regions of a page based on when the user clicks a button. I have added the buttons to my page. I see there is a display condition section for the region. How can I tie them together to hide/show.