How to configure the rule in oracle configurator

Hi All,
   We are trying to create a rule in oracle configurator . The requirement is sum of the quantity of the selected component  should not  exceed 60 quantity. Can someone suggest me how to achieve this ?

Hi,
You can use the "Resource" Component to track the quantity of the selected component.
For example set the "Resource" value to 60 and use the "Consume From" rule to relate the "Selected component" and "Resource". So here every time when the required component is selected, it consumes value from the Resource which is 60.
The value of the Resource can be positive or Zero but a Resource is violated if its value becomes negative at run time (That is over-consumed).
Hope this help for your requirement.
Regards,
Kumaresan

Similar Messages

  • How to test the rule if multiline container is passing to the task?

    Hi Experts,
                      I am working on leave workflow. I have to get the approvers based on no of days of leave and leave type. I am getting these details in ITEMS_TAB internal table. I am passing this table to a rule. Now my problem is when I tried to simulate the rule I am not getting any input screen to enter the data.
    ITEMS_TAB is an internal table type of   "PTREQ_ITEMS_WF_TAB_FLAT".
    In the rule I have created a container by selecting the radiobutton "ABAP Dict. Data Type" and entered the above reference parameter is it right way?
    Is it possible to test the rule independently if I use multiline container as import parameter in my rule?  If so can anybody please tell me how to test the rule?
    Thank You.
    Srija.

    Hi Pavan,
                     Thank you.
                     To copy the values I am not getting any input screen to input the values. I observed one thing that the type that I am referring in the Rule is a deep structure. Is this is the reason that I am not getting the input screen to enter the values?
    I tested by creating aother rule by taking a field for that rule I am getting the input screen to simulate the Rule.
    Can you please suggest if the rule will not work then what I have to do? without the rule how can I get the agents?
    Thank you.
    Srija

  • How to store the images in Oracle?

    Hi,
    I am a new developer, trying to find out how to store the images in Oracle. Is there anyway that I can store the images in Oracle and insert them into my html file?
    Thanks!
    Sarah

    There is a simple image example available from OTN.
    From the OTN main page, go to Products --> interMedia --> Sample Code. The name of the example is "Load rich media content with a browser."
    This example loads and retrieves an image from an Oracle8i database through a web page using the Oracle interMedia Web Agent.
    Hope this helps.
    null

  • How to remove the rule or class function in CS5

    i need to know how to remove the rule or class function in CS5  at the bottom of the screen there are two options for formating HTML and Css when i click the HTML it only allows me to change the bold or italics or link something but when i click CSS it allows me to format how i want the paragraph aligned and the text size and font when i click on lets say changing the font size a box comes up asking me to name a rule so it applies it to everything else i type i want to know how to stop tht like edit everything on my own and if i use CS5 here will it be compatible with CS4 or CS3 at my skool plzz help ive been frustrated with this

    If I use CS5 here will it be compatible with CS4 or CS3 at my skool plzz help ive been frustrated with this
    Code is code.   It doesn't matter which product you use.
    i need to know how to remove the rule or class function in CS5
    You can't.  DW encourages you to use good coding methods, which means using CSS classes and to keep content (HTML) separate from styles (CSS).  For example, if you change font-size on p tags like so:
         p {font-size: 38px}
    Every paragraph will have 38px sized text.
    If you want to apply a special style to just a portion of your text, you must define a CSS class name like so:
    .foo {
    font-size: 38px;
    color: red;
    HTML:
    <p>This is normal paragraph text <span class="foo"> And this is very big and red.</span></p>
    This is normal paragraph text And this is very big and red. 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    Message was edited by: Nancy O.  -- unfortunately, this forum doesn't support Raw HTML with inline styles. You'll need to paste my code examples into your DW page to see the effect.

  • How to modify the database by Oracle-ridc-client

    How to modify the database by Oracle-ridc-client

    First of all, from your question it is not very clear what kind of modifications you intend to do - one correct answer to your question could be "call any non-read-only service", which will result as insert/update/delete to a table somewhere. My guess is that this is not the answer you are looking for.
    While working with RIDC (or CIS to answer your other thread at once) you have to understand that you integrate primarily with the application layer of your solution. If you want to modify the database scheme, you might, for instance, add a new metadata field - this is OK, because there is a service that you may call to achieve that. On the other hand you might want to change the db scheme directly (e.g. add a new column to a standard table); here neither RIDC, not CIS will help you unless you create a custom (server-side) service that you will call. Note, however, that you should be doing this only if you are really sure what you are doing.

  • How to identify the locks in oracle db objects? i dont have access to check

    How to identify the locks in oracle db objects? i dont have access to check the v$lock or v$ objects. i dont have dba access. what are the symptoms for table, row or objects lock? how v guess it would be lock?
    Thanks in advance friends..

    I believe you will have to call your DBA on the phone in that case.
    You can query something with a select ... for update nowait.
    If it raises an exception you can handle it within a when section.
    -- Running in one session
    SQL> create table t1 as select 1 col1 from dual;
    Table created
    SQL> select * from t1 for update nowait;
          COL1
             1
    SQL>
    -- now running in a different session
    SQL> select * from t1 for update nowait;
    select * from t1 for update nowait
    ORA-00054: resource busy and acquire with NOWAIT specified
    SQL> set serveroutput on
    SQL>
    SQL> DECLARE
      2    CURSOR cur1 IS
      3      SELECT col1 FROM t1 FOR UPDATE NOWAIT;
      4    v_col1 NUMBER;
      5    locking_error EXCEPTION;
      6    PRAGMA EXCEPTION_INIT(locking_error, -00054);
      7  BEGIN
      8    OPEN cur1;
      9  EXCEPTION
    10    WHEN locking_error THEN
    11      dbms_output.put_line('Busted locking my rows!');
    12  END;
    13  /
    Busted locking my rows!
    PL/SQL procedure successfully completed
    SQL> Now, surely you won't be able to tell anything else other than there was something locked there.
    But none of the details you would find in the views.

  • How to Transfer the Data from ORACLE APPS to SAP

    Hi Gurus,
    Here are my couple of quieries regarding Data Migration from Legacy(Oracle Apps) to SAP.
    1. How to link between Legacy system(ORACLE APPS) and SAP ?
    2. How to migrate the data from Oracle tables to SAP directly, instead of loading the flat files(.txt, .xls) ?
    Please respond to my queries ASAP.
    Thanks,
    SAPSURE.
    Edited by: sapsure on Sep 9, 2010 11:39 AM
    Edited by: sapsure on Sep 10, 2010 2:32 PM

    1. How to link between Legacy system(ORACLE APPS) and SAP ?
            If you have SAP PI in place then you can interact with oracle database tables directly from PI and then data can be posted to SAP transactions through IDocs/BAPIs.
            If you did not have SAP PI still you can do JDBC connection directly from ABAP program. Not sure about the exact steps check in forum.
    2. How to migrate the data from Oracle tables to SAP directly, instead of loading the flat files(.txt, .xls) ?
            If you want to directly post the data SAP transactions (I hope not directly to SAP tables) then connection needs to establish through ABAP program or Via. PI.
    Regards,

  • How to use the rule MessageFromExtr?

    Hi guys,
    I'm trying to put dynamically a multiline text with some paragraphs in bold, and as I can see the best way to achieve this is using the rule MessageFromExtr, but I'm not able to do it successfuly.
    Currently I have the data mapped through the XDD record "TESTXDD" from my XML input file with the MOVE_IT rule, a section "TESTSECTION", with the field "TESTFIELD" who has the MESSAGEFROMEXTR rule,
    This a the section in the XML where the data is set:
    <TEST VALUE="aslkdalsd &lt;Font:11110&gt;bold&lt;Font&gt; adasdasd"/>
    I don't understand how should be done this, in the help file RULES.CHM is mentioned something about a "DataDictionary" section in some INI file, but I cannot get it at all.
    This is the error I'm getting when I run the process.
    [10:04:26AM] Error: Company - LINEOFBUSINESS LOB - DNO Transaction 1312
    [10:04:26AM] Error: DM10405: in MESSAGEFROMEXTR: Unknown parameter in field rule. Field <TESTFIELD>
    [10:04:26AM] Error: Company - LINEOFBUSINESS LOB - DNO Transaction 1312
    [10:04:26AM] Error: DM10411: in MESSAGEFROMEXTR: Image <KICK_TO_WIP_SECTION> Could not parse RuleParms <>
    [10:04:26AM] Error: Company - LINEOFBUSINESS LOB - DNO Transaction 1312
    [10:04:26AM] Error: DM12051: in RPProcessOneField(): Unable to execute rule: <MESSAGEFROMEXTR>. Current Image is <TESTSECTION>
    [10:04:26AM] Error: Company - LINEOFBUSINESS LOB - DNO Transaction 1312
    [10:04:26AM] Error: DM12048: in RPProcessFields(): Unable to RPProcessOneField(pRPS) <TESTFIELD>. Processing will continue for image <TEST>. See INI group:<GenDataStopOn> option: FieldErrors
    [10:04:29AM] Error: An error occurred during processing.
    I'm using Documaker v12.1.
    Can anyone give me a clue about how should be set this?
    Thanks in Advance,
    Max.

    This doesn't specifically answer your question as to how to use MessageFromExtr, but have a look at the XML Guide http://docs.oracle.com/cd/E22582_01/xmlguide.pdf,specifically pages 36-37. You can pass some simple markup tags in your extract data to perform bolding, and an example is shown in the doc.
    -Andy

  • How to print the Cheques in Oracle Payroll in R12

    After Running the Cheque Writer Process in Oracle Payroll how can one print the Cheque Leaves in the Payroll module for each employee that is to be paid through cheque.
    Please give the Navigation for the same.
    Regards,
    Chetan

    Please if there is any one who has tried out some customisation on how to print the cheques after running the cheque writer process kindly share it with me as i am in big trouble here....

  • How to Restrict the users in oracle applications

    Hi,
    I want to Restrict the users in oracle applications without using database
    can any one please expalin me how to resttrict the users using middletier
    Thanks
    Gita

    HI srini ,
    my application version 12.0.4 and database is 10.2.0.4
    and i want to restrict the No of users
    exp i have have 500 users and i want restrict to 100 only
    how can i do that please explain
    Thanks,
    Sudheer

  • How to use the rule in workflow

    Hi ,Guy ,
        I am implementing the workflow project nowaday ,and when I use the rule to determine the step's agent , I often come across all kinds of strange problem and I do not know how to slove it goodly ,for example I do not know how to get the agent from orgainization unit etc .
    can anybody give me some advices or some relevant docments(I have read the SAP standard material BIT601/BIT603/BIT610) .thank a lot .
    Jialiang.Qiu

    Yes , you can define your own rule. You need to populate the table of type SWHACTOR with whatever agents you want to maintain . See the below code :
    function z_cvwf_dwnam_approver_get.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(ACT_PLVAR) LIKE  P1208-PLVAR DEFAULT SPACE
    *"     VALUE(ACT_ISTAT) LIKE  P1208-ISTAT DEFAULT '1'
    *"     VALUE(ACT_BEGDA) LIKE  P1208-BEGDA DEFAULT SY-DATUM
    *"     VALUE(ACT_ENDDA) LIKE  P1208-ENDDA DEFAULT SY-DATUM
    *"  TABLES
    *"      AC_CONTAINER STRUCTURE  SWCONT
    *"      ACTOR_TAB STRUCTURE  SWHACTOR
    *"  EXCEPTIONS
    *"      NO_ACTIVE_PLVAR
    *"      OBJTYP_NOT_VALID
    *"      NO_ACTOR_FOUND
      data: l_user  like  draw-dwnam, "User
            l_dokar like  draw-dokar, "Document type
            l_doknr like  draw-doknr, "Document number
            l_dokvr like  draw-dokvr, "Document version
            l_doktl like  draw-doktl. "Document part
      data: xausp like ausp.
    *Data for AUSPC_V1 selection
      data: xatinn(12) value 'APPROVER',
            xklart like ausp-klart value '017',
            xobjek like ausp-objek.
      include <cntain>.
      swc_get_element ac_container 'DOCUMENT'        l_doknr.
      swc_get_element ac_container 'DOCUMENTPART'    l_doktl.
      swc_get_element ac_container 'DOCUMENTTYPE'    l_dokar.
      swc_get_element ac_container 'DOCUMENTVERSION' l_dokvr.
    Create objek from DRAW key fields
      write: l_dokar to xobjek,
             l_doknr to xobjek+3(25),
             l_dokvr to xobjek+28(2),
             l_doktl to xobjek+30(3).
    Get Approver number
    call function 'CONVERSION_EXIT_ATINN_INPUT'
      exporting
        input        =  xatinn
    importing
       output        =  xatinn.
    From table AUSP
      clear sy-subrc.
      select single * from  ausp
               into xausp
             where  objek  = xobjek
             and    atinn  = xatinn
             and    klart  = xklart.
    Assign ATWRT to USER RESPONSIBLE FOR APPROVAL
      if sy-subrc > 0.
        raise no_actor_found.
      endif.
      actor_tab-otype = 'US'.
      actor_tab-objid = xausp-atwrt.
      append actor_tab.
    endfunction.

  • How to find the depth in oracle Inventory

    Oracle Apps R12 Order management.
    Hi All
    I working in oracle Apps r12 in order management. How to fine the depth of a product in order management.
    Any help is highly appricatable.
    thanks & Regards
    Srikkanth.M

    Thanks for ur reply
    I have checked in the mtl_system_items_b tables there is no column for depth as u said we can use the height value as depth value.
    My problem is i need to create a product manually using the XML Tag so here the depth column is mandatory, so that why i am searching for depth column.
    is the formula used to find the depth is correct
    depth= volume / length*width
    please let me if i am correct or wrong
    Thanks & regards
    Srikkanth.M

  • How to slove the rule resoultion

    hai,
    I have to find the users invloved in the process. I am using the function module 'RH_GET_ACTORS' to get the users.
    Input is the plant and rule number
      swc_set_element ac_container 'plant' plant.
      CALL FUNCTION 'RH_GET_ACTORS'
        EXPORTING
          act_object                      = 'AC90000001'
        ACT_TASK                        =
        ACT_WI_ID                       =
        ACT_PLVAR                       =
        SEARCH_DATE                     = SY-DATUM
        ACTOR_CONTAINER_OO              =
        tables
         ACTOR_CONTAINER                 = ac_container
        EXCLUDED_AGENTS                 =
          actor_tab                       = actor_tab
         ERROR_TAB                       = error_tab
       EXCEPTIONS
         NO_ACTIVE_PLVAR                 = 1
         NO_ACTOR_FOUND                  = 2
         EXCEPTION_OF_ROLE_RAISED        = 3
         NO_VALID_AGENT_DETERMINED       = 4
         NO_CONTAINER                    = 5
         OTHERS                          = 6
    I am not get any values.
    When i checked the rule the above specified rule is not in my system. Any default rule is there for purchase order release and how to give import parameters for that.
    tell me please.
    thanks,
    Elamaran

    Sample code:
    form read_actor using    id_standard_role type  hrsobject-objid
                             it_act_container type swconttab
                    changing ct_actor_tab type  tswhactor.
      data: begin of ls_object,
             type like hrsobject-otype,
             id   like hrsobject-objid,
            end of ls_object.
      data: ld_act_object type rhobjects-object.
      move 'AC' to ls_object-type.
      move id_standard_role to ls_object-id.
      move ls_object to ld_act_object.
      call function 'RH_GET_ACTORS'
           exporting
                act_object      = ld_act_object
           tables
                actor_container = it_act_container
                actor_tab       = ct_actor_tab
           exceptions
                others          = 0.
    endform.                               " READ_ACTOR
    REgards,
    Ravi

  • How to enable the filetransfer in Oracle Communicator 11g?

    Hi,
    I've already change the relevant values in the Program Files\Oracle\Oracle Communicator\defaults.xml as following:
         <FileTransfer>
              <Location>http://example.com:7001/filetransfer</Location>
         </FileTransfer>
         <FileTransferEnabled>1</FileTransferEnabled>
    But the Communicator still can't send files, how to resolve it?
    Best Regards,
    Sean

    Hi dprabhu,
    I installed the wlcs in a All-in-One Administration Server. The host name is set to example.com and the server listen port is 7001. The original default.xml after the installation is below:
    <?xml version="1.0" encoding="UTF-8"?>
    <Account>
         <Version>11.1.1.10002</Version>
         <AccountName></AccountName>
         <AgentId></AgentId>
         <SipUri></SipUri>
         <FullName></FullName>
         <FirewallHeartbeat>1</FirewallHeartbeat>
         <FirewallHeartbeatInterval>40000</FirewallHeartbeatInterval>
         <UseOutboundProxy>1</UseOutboundProxy>
         <OutboundProxyAddress></OutboundProxyAddress>
         <UseRPortForNatTraversal>1</UseRPortForNatTraversal>
         <UseStun>0</UseStun>
         <StunServerAddress></StunServerAddress>
         <StunServerPort></StunServerPort>
         <Theme>Slate</Theme>
         <ServiceNote></ServiceNote>
         <DeviceQValue>1.0</DeviceQValue>
         <Notifications>
              <UseNotifications>0</UseNotifications>
              <Location></Location>
              <LastShowOnceMessageID></LastShowOnceMessageID>
         </Notifications>
         <Transport>
              <ContactTransport>TCP</ContactTransport>
              <RegisterContactTransport>TCP</RegisterContactTransport>
         </Transport>
         <UPnP>
              <Enabled>0</Enabled>
         </UPnP>
         <ConnectionType>256</ConnectionType>
         <SilenceSuppression>0</SilenceSuppression>
         <AcousticEchoCancellation>0</AcousticEchoCancellation>
         <AutomaticGainControl>1</AutomaticGainControl>
         <PCSpeakerEnabled>0</PCSpeakerEnabled>
         <AllowVolumeCheck>1</AllowVolumeCheck>
         <PreferredCaptureDevice></PreferredCaptureDevice>
         <ImageResolution>QCIF</ImageResolution>
         <VideoStandard>LSVX</VideoStandard>
         <T1>500</T1>
         <T2>4000</T2>
         <T4>5000</T4>
         <PreferredSipPort>5060</PreferredSipPort>
         <PreferredAudioRtpPort></PreferredAudioRtpPort>
         <PreferredVideoRtpPort></PreferredVideoRtpPort>
         <RegisterExpireTime>600</RegisterExpireTime>
         <PresenceSubscribeExpireTime>3600</PresenceSubscribeExpireTime>
         <WatcherInfoSubscribeExpireTime>3600</WatcherInfoSubscribeExpireTime>
         <MessageWaitingSubscribeExpireTime>3600</MessageWaitingSubscribeExpireTime>
         <PublishExpireTime>600</PublishExpireTime>
         <NetDetectionEnabled>1</NetDetectionEnabled>
         <UserIdleTimeOut>1</UserIdleTimeOut>
         <UserIdleTimeOutValue>5</UserIdleTimeOutValue>
         <ShowSmilies>1</ShowSmilies>
         <ShowMessageTimestamps>1</ShowMessageTimestamps>
         <UseHotKeys>1</UseHotKeys>
         <AutoAnswerEnabled>0</AutoAnswerEnabled>
         <SavePasswordPreference>0</SavePasswordPreference>
         <ContactListSortCriteria>status</ContactListSortCriteria>
         <DeclineResponseCode>486</DeclineResponseCode>
         <Sounds>
              <Sound>
                   <Event>UserOnline</Event>
                   <File>UserOnline.wav</File>
                   <Mute>0</Mute>
              </Sound>
              <Sound>
                   <Event>UserOffline</Event>
                   <File>UserOffline.wav</File>
                   <Mute>0</Mute>
              </Sound>
              <Sound>
                   <Event>IncomingMessage</Event>
                   <File>IncomingMessage.wav</File>
                   <Mute>0</Mute>
              </Sound>
              <Sound>
                   <Event>VoiceMessageAvailable</Event>
                   <File>VoiceMessageWaiting.wav</File>
                   <Mute>0</Mute>
              </Sound>
         </Sounds>
         <Ui>
              <MainDlgTopMost>0</MainDlgTopMost>
              <SendMessageWithEnter>1</SendMessageWithEnter>
              <HideHoldOnCallSwitchingWarning>0</HideHoldOnCallSwitchingWarning>
              <BlockBuddiesOnDelete>1</BlockBuddiesOnDelete>
              <PresenceMenu></PresenceMenu>
              <MainDlgCloseToTray>1</MainDlgCloseToTray>
              <MainDlgCloseToTrayWarning>1</MainDlgCloseToTrayWarning>
              <HideCameraNotFoundWarning>0</HideCameraNotFoundWarning>
              <ShowOfflineContacts>0</ShowOfflineContacts>
              <ShowContactsWithPhone>0</ShowContactsWithPhone>
              <Dialogs>
              </Dialogs>
         </Ui>
         <LdapServers></LdapServers>
         <Credentials></Credentials>
         <RingSignalMap></RingSignalMap>
         <SoundEffects></SoundEffects>
         <XDMSSettings>
              <UseHttps>0</UseHttps>
              <Host></Host>
              <Port></Port>
              <RootContext></RootContext>
              <PresRuleAUID></PresRuleAUID>
              <PresRuleDocName></PresRuleDocName>
              <HardStateAUID></HardStateAUID>
              <HardStateDocName></HardStateDocName>
              <ResourceListsAUID></ResourceListsAUID>
              <ResourceListsDocName></ResourceListsDocName>
         </XDMSSettings>
         <Provisioning>
              <Location></Location>
         </Provisioning>
         <FileTransfer>
              <Location></Location>
         </FileTransfer>
         <InboxService>
              <Enabled>0</Enabled>
              <Name></Name>
              <Location></Location>
         </InboxService>
         <PlugInProperties></PlugInProperties>
         <Groups></Groups>
         <PresenceEnabled>1</PresenceEnabled>
         <AddressListStoreEnabled>0</AddressListStoreEnabled>
         <FileTransferEnabled>0</FileTransferEnabled>
         <SMSEnabled>0</SMSEnabled>
         <AudioEnabled>0</AudioEnabled>
         <VideoEnabled>0</VideoEnabled>
         <UseServerResourceLists>1</UseServerResourceLists>
         <HistoryEnabled>0</HistoryEnabled>
         <HistoryExpirationDays>14</HistoryExpirationDays>
         <CallerIdMessagePopUpDuration>20</CallerIdMessagePopUpDuration>
         <StripRealmFromUserName>0</StripRealmFromUserName>
    </Account>
    I just changed the relevant part
    <FileTransfer>
    <Location>http://example.com:7001/filetransfer</Location>
    </FileTransfer>
    <FileTransferEnabled>1</FileTransferEnabled>
    Best Regards,
    Sean
    Edited by: selin on 2009-9-10 下午6:45

  • Urgent:How to get the Sqltext for Oracle Sumbitted Jobs in 10g

    Dear All,
    Could you help me out in sorting the below problem.
    I use to get the current running sql's with following below query in 9i.
    SELECT A.SID,B.HASH_VALUE, OSUSER, USERNAME, SQL_TEXT
    FROM V$SESSION A, V$SQLTEXT B
    WHERE B.HASH_VALUE = A.SQL_HASH_VALUE
    AND USERNAME LIKE upper('%SCHEMA%')
    ORDER BY B.HASH_VALUE, B.PIECE;
    This is will work in 10g also for user-triggered sqls,stored procedures etc.
    But when oracle submits job i'm not able find which qurery is running.
    Seems For oracle jobs in 10g for V$session contain column SQL_HASH_VALUE as Zero and hence i'm not able find the any sql's running.
    Could you please any of you help me out how to get the Sqltext for Orcle submited Jobs in 10g.
    Please revert asap as this is very urgent for me.
    Thanks in Advance
    Anil.

    Have you tried to query WF_ITEMS? -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=WF_ITEMS&c_owner=APPLSYS&c_type=TABLE
    bde_wf_item.sql - Runtime Data of a Single Workflow Item [ID 187071.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Customized AP aging report

    we are checking the customized ABAP program, if we set today as open item key date, the program retrieved data and show the total open item for a company correctly and tie to vendor line item report, if we choose previous date(for example 2010, 12.30

  • Elem 4.0 in Windows 7 without problems ?

    Is it possible tun run Photoshop Elem 4.0 in Windows 7 without problems ? Warnings about compability problems.

  • How to check the Statistics generated for a table through DBMS_STATS.

    Hi, How to check the statistics generated for a Table through DBMS_STATS.GATHER_TABLE_STATS procedure ? Please let me know. Thanks ! Regards, Rajasekhar

  • Managing sessions in a "secure" application

    Right now I'm working on securing part of a ColdFusion 9 site with some more robust security. I use the basic cflogin / cflogout system for handling logins that is described in most Adobe tutorials online. What I'd like to do is the following: Be abl

  • RSCRM_BAPI giving Error in the OLAP-Check - Data  Retraction

    Hello, we have an integrated planing using a cube in BW. From this cube data has been retracted to R/3 using a retraction query. Problem: We needed to compress the cube due to to many partitions on the database. From that moment on the retraction fai