How to use BO as a Rule Container?

Hi Gurus,
my requirement is Based on Fundcenter and FMArea in FMBBC to fetch the User(BOSSID) from FMSB Application.
i created two containers (Fundcenter & FMArea) by using FMFCTR table. but the screen field values (Fundcenter & FMArea) in FMBBC are not passing to the rule container. i think by using BO we can pass those values (Fundcenter & FMArea).
FMArea is avialble in BUS0050, but fundcenter is delegated to ZBUS0050.
i created a rule for FMBBC Application. but i want to create a rule container by using BO BUS0050. how can we call it in Function Module.
SWC_GET_ELEMENT 'BUS0050' L_BUS0050
how can i declare it is in declaration of FM?
I need Input parameters are FundCentre and FMArea from BUS0050 to fetch the User (BOSSID) from FMSB Application?
Plz help me, how can i use BO as a container to my requirement ?

Hi Agardipkar,
i cheked the Rule. but iam unable to understand , iam a new one. i already wrote a code for Rule. please tell me if i use the BO, what are the changes required in my code. plzzzz
Workflow Container is BO -> BUS0050.
Rule container is BO->BUS0050 
My Input parameters are FMAREA and FUNDCENTER, to fetch the BOSSID.
FUNCTION ZFM_RULE_BUDGET.
""Local Interface:
*" TABLES
*" AC_CONTAINER STRUCTURE SWCONT
*" ACTOR_TAB STRUCTURE SWHACTOR
*" EXCEPTIONS
*" FMAREA_NOT_FOUND
*" FUNDCENTER_NOT_FOUND
*" AUTHORIZER_NOT_FOUND
INCLUDE <CNTN01>.
TABLES : FMFCTR.
DATA : L_FMAREA TYPE FMFCTR-FIKRS,
L_FUNCEN TYPE FMFCTR-FICTR,
WA_ACTOR TYPE SWHACTOR,
L_BOSSID TYPE FMFCTR-BOSSID,
NUM_LINES TYPE I.
CONSTANTS: C_VALUE(2) TYPE C VALUE 'US'.
SWC_GET_ELEMENT AC_CONTAINER 'FMAREA' L_FMAREA.
IF SY-SUBRC NE 0.
RAISE FMAREA_NOT_FOUND.
ENDIF.
SWC_GET_ELEMENT AC_CONTAINER 'FUNDCENTER' L_FUNCEN.
IF SY-SUBRC NE 0.
RAISE FUNDCENTER_NOT_FOUND.
ENDIF.
IF L_FMAREA IS NOT INITIAL AND L_FUNCEN IS NOT INITIAL.
to get the authorizer from FMSB Application by using fundcenter and FMArea.
SELECT SINGLE BOSSID FROM FMFCTR INTO L_BOSSID
WHERE FIKRS = L_FMAREA
AND FICTR = L_FUNCEN.
IF SY-SUBRC EQ 0.
WA_ACTOR-OTYPE = C_VALUE.
WA_ACTOR-OBJID = L_BOSSID.
APPEND WA_ACTOR TO ACTOR_TAB.
ENDIF.
ENDIF.
DESCRIBE TABLE ACTOR_TAB LINES NUM_LINES.
IF NUM_LINES IS INITIAL.
RAISE AUTHORIZER_NOT_FOUND.
ENDIF.
ENDFUNCTION.

Similar Messages

  • How to use Flagged mailbox in rules for smart mailbox?

    Since I installted ML I have a new mailbox called Flagged. In Lion I had a smart mailbox called Flagged which did the same.
    I used this smart mailbox in Lion in rules of other smart mailboxes. The new mailbox Flagged in ML however can't be selected in a rule for a smart mailbox. It is in fact the only one I can't select.
    Am I the only one facing this problem? If so, is there a solution for it?

    The only use I've found so far for the Flagged messages is to be able to set different colours for different things and then use the preset mailbox to isolate and concentrate on them:
    And, as I'm using iCloud, I also get to see them on my laptop.

  • How to use fn:tokenize with fn:contains

    Greentings!
    After searching in google, I came here to see if someone can help me using fn:contains and fn:tokenize at the same time.
    I am developing a data service that will receive a departament acronym and the name or part of the name of an employee.
    At the moment, I have the following working snippet:
    declare function rr:getEmployeeByDeptName($dept as xs:string, $name as xs:string) as element(rr:employee)* {
         for $emp in emp:EMPLOYEE()
         for $orgao in dep:DEPARTMENT()
         where (fn:contains($emp/FULL_NAME, fn:upper-case($name)))
         where ($dep/ACRONYM eq fn:upper-case($dept))
         return rr:buildReturn($emp)
    This is woking fine, but I still have to include one more feature: the variable $name could be several words separated by spaces, like 'JENNIFER LOVE HEWITT', and I would have to search using all these elements, eg:
         where (fn:contains($emp/FULL_NAME, fn:upper-case('JENNIFER')))
         where (fn:contains($emp/FULL_NAME, fn:upper-case('LOVE')))
         where (fn:contains($emp/FULL_NAME, fn:upper-case('HEWITT')))
         where ($dep/ACRONYM eq fn:upper-case($dept))
    Could you please help me with this issue?
    Thanks in advance!
    PS: English is not my native language, so please contact me if my question needs clarification.

    Google on fn:tokenize and see the examples in the first link.
    you want to do something like :
    for $e in emp:EMPLOYEE()
    where
    some $n in $name
    satisfies fn:contains($e/FULL_NAME, $n)
    return
    $e
    Although this will work, it will not be efficient when EMPLOYEE is a database table (look at the query plan and you'll see that the 'contain' function does not get pushed to the database and you end up reading every row for EMPLOYEE to perform the fn:contains in memory).
    for $e in emp:EMPLOYEE()
    where
    some $n in $name
    satisfies fn-bea:sql-like($e/FULL_NAME, fn:concat( '%' , $n, '%'))
    return
    $e
    or this , but it will return multiple rows if multiple tokens from $name occur in FULL_NAME
    for $n in $name
    for $e in emp:EMPLOYEE()
    where
    fn-bea:sql-like($e/FULL_NAME, fn:concat( '%' , $n, '%'))
    return
    $e

  • How to use customized rule in step mail workflow

    Dear All:
    I have created a customized rule,which is working fine when I simulate it, it is fetching SAP user from a ztable which I created.
    My requirement is how to use the rule in my workflow which have one "send mail" step. As in "send mail" under Receipt Type I cant find rule option.
    Kindly help me.
    Rahul.

    1.Create a method GET_ACTORS using RH_GET_ACTORS,
    2.Create a container element 'Actors' type string with multiline.
    3.Create Task, where you can call the Method GET_ACTORS  and pass the Container values of 'Actors' from Method->Task->Workflow
    4.Create a Step type before creating the Step mail and include the previous Task.
    5.Now you can create the step Mail. Give the Recipient Type as 'Expression'-> Select the Container Element 'Actors' from WF container
    But remember the values should be Passed from the task to Workflow in Binding correctly.
    Regards,
    Sriyash

  • How to use rule and send the same email to multiple recipents

    Hi,
    My requirement is to send the workitem to the multiple recipents. one of my reiend suggest me to use the rule but i don't know how to use that .
    can any one of you suggest me how to use rule in workflow.
    Also i want to send the same email to multiple recipent .how can i do it by using the multiline variable...please advice me with example if possible..
    Note :- Is it necessary to saparate the email id with comma or i will add all the email next one another..
    Please suggest.
    Thanks in advance ,
    Anand

    Hi Anand,
    I would suggest you first follow the guidelines of the forum and a little searching. One of your questions has been asked just a few threads below.
    Regards,
    Martin

  • How to use complex function as condition in Oracle Rule Decision Table?

    How to use complex function as condition in Oracle Rule Decision Table?
    We want to compare an incoming date range with the date defined in the rules. This date comparison is based on the input date in the fact & the date as defined for each rule. Can this be done in a decision table?

    I see a couple of problems here.
    First, what you posted below is not a syntactically valid query. It seems to be part of a larger query, specifically, this looks to be only the GROUP BY clause of a query.
    Prabu ammaiappan wrote:
    Hi,
    I Have a group function in the Query. Below is the Query i have used it,
    GROUP BY S.FREIGHTCLASS,
    R.CONTAINERKEY,
    S.SKU,
    S.DESCR ||S.DESCRIPTION2,
    S.PVTYPE,
    RD.LOTTABLE06,
    R.WAREHOUSEREFERENCE,
    RD.TOLOC,
    R.ADDWHO,
    R.TYPE,
    S.CWFLAG,
    S.STDNETWGT,
    S.ORDERUOM,
    R.ADDDATE,
    C.DESCRIPTION,
    (CASE WHEN P.POKEY LIKE '%PUR%' THEN 'NULL' ELSE to_char(P.PODATE,'dd/mm/yyyy') END),
    NVL((CASE WHEN R.ADDWHO='BOOMI' THEN RDD.SUPPLIERNAME END),SS.COMPANY),
    RDD.BRAND,
    S.NAPA,
    RD.RECEIPTKEY,
    R.SUSR4,
    P.POKEY,
    RDD.SUSR1,
    r.STATUS, DECODE(RDD.SUSR2,' ',0,'',0,RDD.SUSR2),
    rd.SUSR3Second, the answer to your primary question, "How do I add a predicate with with a MAX() function to my where clause?" is that you don't. As you discovered, if you attempt to do so, you'll find it doesn't work. If you stop and think about how SQL is processed, it should make sense to you why the SQL is not valid.
    If you want to apply a filter condition such as:
    trunc(max(RD.DATERECEIVED)) BETWEEN TO_DATE('01/08/2011','DD/MM/YYYY') AND TO_DATE('01/08/2011','DD/MM/YYYY')you should do it in a HAVING clause, not a where clause:
    select ....
      from ....
    where ....
    group by ....
    having max(some_date) between this_date and that_date;Hope that helps,
    -Mark

  • How to use rules and roles in workflow?

    Hi experts,
    I am a beginner in  workflow. Could  any one tell me how to use rules and roles in workflow ?
    Can u pls tell me the steps to follow?
    and more over what are all the <b>important things</b> we have to learn in workflow module ??
    I shall be thankful to u.
    Thanks
    uma

    Hi
    Workflow automates the steps and activities in a business process according to predefined procedures and rules.
    Workflow presents information and documents to the appropriate knowledge worker or agent (another entity such as a program) to make a decision or perform an activity.
    Workflow tracks each and every step in the process flow and maintains an ongoing status.
    Workflow also collects and reports all of the metrics associated with the execution and completion of the process.
    Check the below links u will get lot of info..
    http://www.sap-press.com/product.cfm?account=&product=H950
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Go through the following links on FORK :
    http://help.sap.com/saphelp_nw04/helpdata/en/24/e2283f2bbad036e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/25f1e7454311d189430000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/c5/e4a930453d11d189430000e829fbbd/content.htm
    http://www.insightcp.com/res_23.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    For more reference on workflow: http://****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/04/9277a346f311d189470000e829fbbd/frameset.htm
    Check these links.
    http://www.sapgenie.com/workflow/index.htm
    /people/ginger.gatling/blog/2005/12/01/link-workflow-business-objects-to-your-collaboration-tasks
    http://help.sap.com/saphelp_nw04/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Workflow tutorials with step-by-step and with screenshots are available at http://www.****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/c14a9b55103116e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    Debug a workflow.
    This has a step by step procedure :
    http://fuller.mit.edu/workflow/debugging.pdf
    www.erpgenie.com/sap/workflow/debugging.htm
    http://www.erpgenie.com/workflow/debugging.htm?2b5de440
    Workflow tutorials with step-by-step and with screenshots are available at
    http://www.****************/Tutorials/Workflow/Workflow.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/WORKFLOW_tutorial.html
    Regarding Work Flow   
    work flow scenarios.
    1. applying for a leave.
    2. approval process.
    3. material creation process.
    4. mainly work flow is for notification purpose.
    chk this links
    http://help.sap.com/saphelp_erp2005/helpdata/en/fb/135962457311d189440000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.erpgenie.com/workflow/index.htm
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    http://www.insightcp.com/res_23.htm
    A good tutorial
    http://www.thespot4sap.com/articles/Invoice_Verification_Automation_Using_SAP_Workflow.asp
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    /people/alan.rickayzen/blog
    /people/jocelyn.dart/blog/2006/06/19/why-use-abap-oo-with-workflow
    a good book
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.sap-press.com/downloads/h950_preview.pdf
    Check the following PDF
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    also seach the workflow forum: SAP Business Workflow
    Regards
    Anji

  • How to upload a file which may contain text as well as image to the server using windows phone 8 application ?

    How to upload a file which may contain text as well as image  to the server using windows phone 8 application ?

    You're going to need to give way more detail about the situation before we can help.

  • 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 use Material Group in substitution rule

    Hello,
    Anyone experience in how to use the entry of the material group of a PO, in a substitution rule for accounting documents.
    I have noticed the material number can be used within a substitution rule, and is also available in BSEG... so far have not find a solution to do this for a material group.
    Please note, this is applicable for PO with no materials (ONLY a material group to use for account determination).
    Many thanks,
    Daan

    forget about all varible in essbase CSC
    it's bad practics.^^^Is it?
    Essbase cube are self big array )^^^That's what makes ARRAY so cool -- you can set up an array that encompasses a dimension.
    Example straight from a HBR:
    ARRAY SomeArray["Entity"] ;
    Regards,
    Cameron Lackpour

  • How to use "Adjustment Level " in automatic adjustments rule

    Now we are setting up BPC for legal consolidation.
    we use BPC 7.0MS SP4 Version.
    I want to use some result of automatic adjustment rules for source data, so I tried to use adjustment level in automatic adjustments rules.
    I was setting up A rule's (to use source data) adjustment level is 0 and B rule's level is 1,
    the result of SPRUNCONSO were "Error" CSD-150 and CSD-160.
    Please let me know how to use adjustment level option.
    Thanks.
    Edited by: tae-youn.kim on Dec 14, 2009 3:20 AM

    Hello :
    CSD-150
    Check the method between METHOD Table and your ownership Cube. Check your Rules between the RULES Table and The ELIM Table. Check The INTCo.
    Regards,
    SANJAY

  • I should have said in my previous message that the iphoto program I am using is for an ipad 2.  I simply want to know how to delete an edited album which contains one photo that I do not want taking up space.

    I should have said in my previous message that the iphoto program I am using is for an ipad 2.  I simply want to know how to delete an edited album which contains one photo that I do not want taking up space.

    OK....I'm stumped.  The message you are seeing is typically there to protect someone from syncing with a different computer/iTunes account.  Is there any way anyone else has used your iPad and possibly connected it to their computer?

  • How to use variable in rule script in HFM

    I'm now writing VB script for HFM rule, and have something to ask about the use of variables in rule.
    The script below generates the following error.
    -Error description-
    Line: 4, Error: Invalid Expression
    HS.Exp "S#Actual.A#77300.I#[ICP None] = cur"
    An error has occurred in Hyperion Financial Management.
    -Rule script-
    Sub Allocate()
    Dim cur
    cur = 500
    HS.Exp "S#Actual.A#77300.I#[ICP None] = cur"
    End Sub
    On the other hand, the script below works properly.
    -Rule script-
    Sub Allocate()
    HS.Exp "S#Actual.A#77300.I#[ICP None] = 500"
    End Sub
    Probably I'm not using variables in proper way, but have no idea how to correct it.
    Does anyone have any idea?
    Thanks in advance.

    Hello,
    try this in the sub calculate:
    HS.Exp "S#Actual.A#77300.I#[ICP None]=" & cur
    For the sub allocate, I suppose that you do not have the issue because the allocate is not launch during the consolidation process. Allocate is launched separatly by a right click, and can only be done when calculation status = "OK", which means that all calculation have been done (that could not be the case if you have an error like this in sub calculate).
    Hope it helps

  • How can I change the value used in a Criteria Rule in a Subscription agent

    Dear mobile heroes.... How can I change the value used in a Criteria Rule in a Subscription agent in a quality environment? (CRM 70 SP04).
    I have built a subscription agent in dev, which uses a static where clause to filter activity_object on VKORG. I need to filter on a different VKORG value in the quality environment, but when I change the value of the sales org, the change is not saved. I have tried this even non 'activated'  subscription agents, but it still does not appear possible to change and save the changes.
    This poses a big problem because the VKORG value I want to use does not even exist in the dev environment, so I could not even rebuild in dev and transport the new agent to quality. Can anyone help me?

    Too old to care now.

  • How do I move folders with subfolders (containing pdf files) from my pc to ipad 3 to use in adobe reader

    How do I move folders with subfolders (containing pdf files) from my pc to ipad 3 to use in adobe reader

    You need to connect the ipad to the computer and open itunes.
    Open the ipad and go into settings, icloud. Tap on "Documents and Data" and turn that on to sync to icloud.
    Now go back into itunes and it should pick up your ipad already and tap on the ipad connection. There will pop up some taps on the center screen for sync options. Go thru each one (summary, info, apps, music, tv shows, podcasts, itunesU, books and photos).....you want to click on "Books".
    To the left click the arrow next to the ipad under Devices.
    The arrow will point down and open the sub menu, click on the "Books" sub menu here. You will see in the center window current books, PDF currently on the ipad.
    Next go to the top and click on "File"  (file, edit, view, controls, store, advanced, help) and click on "add folder to library"...... it will bring up your computer file system in a seperate window. File the folder your looking for and add it. This should get the folder set up to sync onto ipad thru itunes.
    For additional ease in doing things on the middle window of itunes click back on summary, scroll a bit and you will see "Backup", click on "Backup to icloud". Then under "Options", check "Sync with this ipad over WiFi".
    This will allow you to wirelessly sync your itunes and your ipad without having the ipad connected to the computer with a cable. You just have to be on the same wireless network.
    If in itunes you add something like a pdf or photo, when your on your ipad open the Ibooks or Iphoto app and it wull update the file system to match your itunes account. The sync with with anything you do in itunes and it works the other way around also. If you save files, photos, books on the ipad, using the ipad (app store purchases, games, books)....the ipad will update to itunes next time your on the same network.
    FYI - both the ipad and the computer have to be on.
    Itunes updates (changes you make thru itunes), does not need itunes to be open for update content to update to the ipad. This is because it updates to the cloud.
    Updates from the ipad to itunes will need itunes open on the computer. So it can sync with the cloud info.

Maybe you are looking for

  • ON UPDATE CASCADE and Autoincrement primary key with Oracle SQL Developer

    hello everybody, I want to know if Oracle SQL Developer manage autoincrement on primary key and "ON UPDATE CASCADE" when i migrate (with data) SQL Server database in Oracle database. Can you help me ? Thanks for your suggestions.

  • Can't make or receive calls but can text and use data

    I have had signal problems since I have got this phone which is an s4 my wife s3 mini gets better signal while at the same location. Tried everything customer service doesn't know and now I can't even make or receive a call. I can though send and rec

  • EPub export error

    I have created an ePub from an InDesign book file. After running the file through ePubCheck, I came up with twenty-some odd errors, most of which I fixed. One nasty one remains. WARNING OEBPS/content.opf 6 24 title element is empty I've Googled, but

  • How to install ios4 on a second gen ipod touch without deleting the media?

    i've got a second gen 8gb ipod touch running on 2.2.1. (i know it hasnt been updated in a while, my bad). i'm trying to update it to the latest ios4 but when i try to it says that it will delete all media. it also says that i can sync my contents but

  • Lion Server fails to Launch

    I updated from Snow Leopard to Lion. I purchased Lion Server, it installed and when launched, just fails.  Error Message follows: Server cannot be opened because of a problem. Check with the developer to make sure Server works with this version of Ma