How to serialize only 10 variables in a program among more than 10 variable

actually i'am new to this forum .
any body help me how to serialize only 10 variables in a program among more than 10 variables.
assume that there are more than 10 variacles.
give me some guidelines

Ask this question in the Serialization forum. Try to do it only once ;-)

Similar Messages

  • How to calculate number of cutomers that have bought more than variable qnt

    Hi BW Gurus!
    My InfoProvider has following structure:
    CalDay     BusinessPartner1 Customer SoldQnty
    01.02.2005                    1               3       100
    02.02.2005                    2               4       50
    03.02.2005                    1               3       150
    04.02.2005                    1               3       70
    I need to calculate a number of Customers who has bought more than user typed quantity.
    If user input 90 then according to my example number of customers should be 1.
    If user input 40 then number of customers should be 2.
    I have to use formula variable so that user could input quantity.
    In this case I cannot use calculated key figure with type "assignment" to redefine exceptional aggregation.
    Please help.
    Any responce is highly appreciated.
    Thanx!

    Hi Bhanu!
    Thank you for your response!
    I will describe my problem more precisely.
    InfoProvider has(approximately) following structure:
    CalDay BPartner1 BPartner2 BPartner3 Customer SoldQty
    02.02.2005   1       2        3       101        90
    02.02.2005   1       2        4       101       120
    03.02.2005   1       2        3       102        50
    03.02.2005   1       2        4       101       150
    04.02.2005   1       2        3       103       150
    We have to build a query  to calculate a number of customers which have SoldQty greater than predefined by user on selection screen by variable with possibility to drill-down with all BusinessPartners.
    CalDay is restricted by interval variable.
    According to example above
    report should have following result for variable
    for SoldQty = 100
    and CalDay interval = [01.02.2005 ; 05.02.2005]
    via selection screen
    BPartner2   BPartner3    CountOfCustomers
       2           3                1
       2           4                1
    In case of variable for SoldQty = 80
    and CalDay interval = [01.02.2005 ; 05.02.2005]
    BPartner2   BPartner3     CountOfCustomers
       2           3                2
       2           4                1
    Using formula you described I recieve just 1
    in each row of the report. I can create calculated key figure instead of formula with the same logic(on Infoprovider level)with calculations before aggregation.
    But in that case I calculate number of sales greater than predefined quantity
    and I need number of customers...
    Please help!

  • How to install only Roxio CD Burner Program from the Recovery CDs?

    I bought a T400 a few weeks ago in Korea.
    But my company uses English, so I had to install a Windows XP English version.
    However, at that time I lost the Roxio software.
    I have the recovery CDs for T400 Windows XP PRO SP2.
    If it is possible, then please let me know how to install only Roxio CD Burner Programs from the Recovery CDs.
    Thanks.

    Hello,
    unfortunately it´s not possible to install just one program from recovery cd´s.
    But on Lenovo support pages, there you should find your software and applications.
    Please visit with IE and let autodetect your system.
    Then you should able to choose which type of software is availible for you.
    Choose CD and DVD drives.
    Hopefully the T400 department is up to date now.
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

  • How to multiple/ parellal sets of books to generate more than one financial statement based on different (or the same) accounting principles.

    How to multiple/ parallel sets of books to generate more than one financial statement based on different (or the same) accounting principles.
    My Client needs Parallel Ledger in SAP B1 similar like SAP ECC. Is this functionality available ?

    Dear Mr. Nagrajan,
    Thank you for your response. I have already gone through documents but not able to understand. Is there any setup for this ? or its just work around i.e. using template and special field in JV i.e. Ref. 1 /2
    My doubts :
    I understand that Chart of Account structure is one and common for IFRS and other accounting method. We need to create only those account separately ( 2 times with prefix like IFRS revenue account, GAAP Revenue account).
    Now at time of entry, Assume some entries / adjustment are specifically for IFRS and not for other ledger. In this case, What need to do ?
    You have mentioned about DTW approach but do we need to insert all JV's again with other ledger ?
    Someone suggested that if any entry which are specific to IFRS Ledger, We need to user Ref.1 /2 column or Transcation code column and in which we can put IFRS
    Based on this, Need to create 2 seperate template for IFRS and other ledger for all report.
    This is my understanding of Solution in SAP B1. Please help me to clarify my though process
    Please do needful.If you have done implemenation and if you can share doucment, it would be great help.
    Email :[email protected]

  • How to export or delivery report for Excel for more than one sheet in OBIEE

    Hi Experts,
    How to export or delivery report for Excel for more than one sheet in OBIEE 11g? (Every time, I can only see one sheet.)
    Is it possibl to implement this requirement?
    Thanks.

    there are 2 oprions,
    One is have your tow report in a single compound layout of analysis and keep the report in dashboard and give report links.
    it will cath both your report.
    Suppose your analysis are different.
    Then you have the option of printing it to a PDF. on ritght top of Dashboard, Print - > Printable PDF.
    you ca export to PDF no to excel.
    mark if helps,
    fiaz

  • Page number to get displayed only when the page count is more than 1

    Hi Gurus,
    My requirement is to print page numbers ONLY if the page count is more than 1 ,i.e. if the data getting displayed in 1 page only then don't print "Page n of m" but if it is getting displayed in more than 1 page then display "Page n of m" on TOP right corner.
    I selected "Page n of m" and it creates 3 fields in object hierarchy i.e TextField CurrentPage, TextField PageCount and Static Text field Pages.
    I go to the ready:layout of PageCount object, and use below script:
    this.rawValue = xfa.layout.pageCount(); 
    if (this.rawValue == 1) {
    this.parent.Pages.presence     = "invisible";
    I looked at the message Page number not to display but it doesnot resolve my problem.
    Please help me out.
    Regards
    Ajay

    Hello Ajay,
    Script do not work for TextFields.  to get the page numbers displayed.  Select Text field from library and Go to Object Pallete, Value tab and select "Calculated - Read Only" in Type and choose Runtime property.  There you can find the Number of Pages.
    Once this is the text field, you can write script on it. 
    If(this.rawValue == 1)
      this.presence = "invisible"
    similarly write script for total number of pages, but make sure that variable is accessed properly.
    Please let me know, if you still see some issues with it.
    Thanks,
    Rakesh

  • How can i play a movie in keynote from more than 600 seconds between other slides in a automatic loop

    How can i play a movie in keynote from more than 600 seconds between other slides in a automatic loop

    The maximum duration available for an automatic presentation in Keynote is 600 seconds.
    The alternatives are to export a QuickTime video, use other presentation applications, a media server player or digital signage application.

  • SMARTFORM: how to create 3 copy (each copy can print more than one page)

    SMARTFORM: how to create 3 copy (each copy can print more than one page)
    Hello everyone.
    my user want to have form that print 3 copy.
    such as 1 copy description = master,  2 copy description = copy 1 ,3 copy description = copy 2.
    so i create 3 page . I copy from page 1.
    and in each page there is main window which can have data more than 1 page.(such as have a lot of sale data ,it's take 2 page for show output .so it's take 2 page in each copy)
    please help me.
    how to set page and window in each page for print 3 copy and each page can have main window that print more than 1 page

    Hello Vinit.
    thank you very much for your help.
    could you help me more please.
    in below code
      DO NAST_ANZAL TIMES.
    l_counter = l_counter + 1.  " << pass this to FM and use for the TEXT to print
    CALL FUNCTION LF_FM_NAME
               EXPORTING
                         COUNTER = l_COUNTER   " USE this to derive the text into PRINTOUT
    enddo.
    Now i out of office .so i cannot test.
    where do i set NAST_ANZAL for 3 ?
    can i input ?
    NAST_ANZAL = 3.
      DO NAST_ANZAL TIMES.
    l_counter = l_counter + 1.  " << pass this to FM and use for the TEXT to print
    CALL FUNCTION LF_FM_NAME
               EXPORTING
                         COUNTER = l_COUNTER   " USE this to derive the text into PRINTOUT
    enddo.
    Edited by: dittaporn nanasilp on Mar 12, 2011 3:33 PM

  • How can we know that size of dimension is more than fact table?

    how can we know that size of dimension is more than fact table?
    this was the question asked for me in interview

    Hi Reddy,
      This is common way finding the size of cube or dimensions or KF.
    Each keyfiure occupies 10 Bytes of memory
    Each Char occupies 6 Bytes of memory
    So in an Infocube the maximum number of fields are 256 out of which 233 keyfigure, 16 Dimesions and 6 special char.
    So The maximum capacity of a cube
    = 233(Key figure)10 + 16(Characteristics)6 + 6(Sp.Char)*6
    In general InfoCube size should not exceed 100 GB of data
    Hope it answer your question.
    Regards,
    Varun

  • Using creative cloud programs in more than one computer

    Can we install all the programs in more than one computer with creative cloud with the same monthly cost?

    Yes, you can use Creative Cloud desktop applications on two computers at once, regardless of operating system, for the individual associated with the Creative Cloud membership. See the product license agreements page for more information

  • How do i get  my i phone to show more than just the apple symbol?

    how do i get  my i phone to show more than just the apple symbol?

    Welcome to the Apple Community.
    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). It also requires the computer to be using wi-fi.

  • How do I get a game to work in more than just my account?

    I bought a game for my son at the weekend, which I installed successfully and it works fine in my account. But despite having it selected in Parental Controls, it won't work in his account. I tried removing all controls for him, but it still didn't work. The icon for the program looks like the general Apple icon, with ruler, brush, and pencil, and when you click on it a message appears saying "You cannot open the application because it may be damaged or incomplete". Well this isn't true, because it works in my account.
    I tried searching for info about the error message on the Internet, and found advice on dealing with the message when it appeared with a completely different program. It advised right-clicking on the icon, and clicking on Show Package Contents, then Contents>Mac OS. Then it said double click on the icon (which opens Terminal) in there and next time it should run OK. This didn't work, but I noticed that there was not as much text in the Terminal window in my son's account as in mine, so I wonder if I need to enter the same text for him. This is all getting rather complicated, but does anybody know anything about Terminal, and whether any of this makes sense? Or is there something else I need to do?

    Sphinx,
    The folder that you copied should already contain any saved games, and they must remain where they are, relative to the game itself.
    If you would like the copy to go back into the Applications folder, go right ahead and put it there, replacing the original. As long as you are just moving it, not making a copy, ownership will be retained by your son.
    Kiraly has posted a command for use in Terminal. The command he has given does nothing for ownership, but rather changes permissions such that anyone will be able to run the game. The problem with this is that any new saved games will revert to the default permissions, and you will again encounter errors.
    It is far better, in my opinion, to manage ownerhip in this case, not permissions.
    OK, let's get started. The command to change ownership of any item is rather simple:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">chown <who> <what></pre>
    the "who" part will refer to a user by short name, and the "what" part will be the path to a file or folder. So far, we have three elements included in our command, and each one is separated by a space. The problem with this is that we can only modify items that we own; only "root" can modify items regardless of ownership. So, we are more often required to "become root" in order to execute this command:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown <who> <what></pre>
    By preceeding our command with "sudo," we tell the command to execute as the "root user." Only admin users are allowed to perform this action, so we will be asked for our admin password. Once we have typed the command correctly, we press <RETURN>. We will receive a password prompt. We then type our password (it will not be echoed) and again press <RETURN> to execute the command.
    This works fine for single files, but we will usually be dealing with more than a single item. Your case is a good example; one where ownership of an entire directory structure, including any "nested" files and folders, must be changed. For this, we need to add an "option" to the command: the "-R" option. This tells the command to change the ownership of the item named in the "path," and then to do the same "recursively" to every file and/or folder nested inside. It also implies that the target is a directory:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R <who> <what></pre>
    Let's now talk about the two remaining variables, the "arguments" to the command.... The first argument (the "who" part) requires a bit of discussion. In simple terms, this will be a user's short name. However, it will most often also be necessary to change the "group ownership" when we change ownership. There is a separate command to accomplish this, but we can easily forego the need to use this second command by including it in this one. The tool we must use to do this is the ":" modifier, inlcuded in our "who" argument. In 10.3 and later, all users are members of their own, unique group, so we simply use their short name (which is also their group) twice:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R <who:who> <what></pre>
    Now for the final part, the "what" argument... As stated earlier, this will be the path to the intended target (for example, /Users/HOME/Documents/My_Folder). Here, we must discuss the possibility that a path name will include spaces. We can name directories in OS X using spaces, but UNIX needs a little help with them. Since UNIX will normally see any space as an indication that another element to the command is coming, we must explicitly tell it that such is not the case. In other words, we must "escape" the space. We do this by using the forward slash before our space: "\" Let us assume that we have a folder named "My Folder" for which we want to change ownership. Our command will look something like this:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R fred:fred /Users/fred/Documents/My\ Folder</pre>
    Obviously, the above command also assumes that we are logged in as "fred," and we are giving ourselves ownership of a folder in "fred's" HOME folder.
    If this path naming convention is daunting to you, or you simply aren't sure of the correct path, the process can be automated somewhat. Any item can be dragged from the Finder into the Terminal window, and Terminal will automatically fill in the correct path. In this case, we would type the first part of our command:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">sudo chown -R fred:fred</pre>
    Next, we would type a trailing space, and then we would drag our folder from the Finder into the Terminal window. Finally, we would press <RETURN>, enter our admin password, then press <RETURN> again to execute.
    Scott

  • How do I distribute apps to clients in house (more than a hundred)

    I'm currently wanting to distribute apps that plugin to software we have developed for our clients (more than a hundred).
    These apps are not for public and don't want them to be.
    1. How can I distribute them?
    2. Do I have to enroll in iOS Developer Program or iOS Developer Enterprise Program?
    3. Do my clients need to enroll in the iOS Developer Enterprise Program?
    Can somebody please help with this, it has been differcult to find infomation on this.
    Thanks Peter

    1.) The 100 device limit is for testing, not end-user/client distribution. As noted/linked, Apple's B2B/VPP will do what you want, but only if you and your clients are in supported countries.
    2.) Yes - see #1
    3.) No - see #1

  • How to retrict user cannot open the same form more than once (Forms 6i)

    Our users always open the same forms more than once. For example the customer form, the user may access a customer record in the first form, however, he will open a new customer form to edit the same record, the result is he cannot save the record because the record is locked in the first customer form.
    How can I control the user cannot open the same form more than 1 time.
    Best Regards,
    Kane

    The customer form is only an example, I found there will cause a lot of problems is I cannot control the user from calling 1 program more than 1 than within application. Sometimes a user (not good in using computer) will overlap the form for many times.....
    Is there any simple way to do that?...can I have some PL/SQL statement or build-in functions that let me easily found our what forms the user has already opened, then I can control whether I let him open this form or not.
    Urgent...please
    Thanks

  • How do i get my ipod touch to download more than one app at a time, can i make it toware i dont have to wait for one app to download before it starts downloading another,

    my ipod will only download one app at a time and runs extremely slow. i was wondering if there is some way that i can make it download more than one app at a time and how can i make the app start downloading again after i have left my wi-fi zone and then went back in. im really confused.

    Download everything on your computer in iTunes, then sync your iPod to iTunes.
    You should be syncing (backing up) to iTunes and your photo app regurally, anyway.

Maybe you are looking for