Need help on one scenario

Hi,
I have one scenario, how i can implement it using BODS:
A logic will be developed on to verify Value dependency fields which are going to be exposed on Portal through API calls.
Eg.:If attribute X has value A- --> Possible values for field Y are B, C, D and Possible values for field Z are E, F, G
Thanks,
Vicky

Vicky
What is your back end Database??
version of SAP BODS??
I'm Back

Similar Messages

  • I have successfully downloaded Photoshop Elements but did not get an e-mail and do not have a registration # and need help getting one/

    I have successfully downloaded Photoshop Elements 13.  I did not receive an e-mail with the registration number but did get verification of email address.  I have been through all the help sights and only reach dead ends.  Help!

    Photoshop Elements is not part of the Cloud, I will move this to that forum
    Photoshop Elements Forum http://forums.adobe.com/community/photoshop_elements
    Select a topic, then click I STILL NEED HELP to activate Photoshop Elements Online chat
    -http://helpx.adobe.com/contact.html?product=photoshop-elements or
    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-installation-photoshop-elements- premiere.html

  • Need help for asynchr. scenario between 4.6c and XI

    Hi,
    I need some help with this.  We are running 4.6c and now I need to talk to XI 3.0 asynchronously.
    I have a situation where I need to send data to an external application.
    So: R/3(4.6c) -> XI -> external application (the application is not in our landscape).
    It's not required for now to get an answer back from the external application so what are my options?
    I want to build my solution around that I will eventually get a response back to be real time but
    for now, the FTP adapter should work fine.  PCK will be implimented in the future to make it real time.
    Just for a test, I tried:
    R/3 -- (RFC Adapter) --> XI --> File adapter ...   but it's crashing in R/3 since R/3 is expecting
    a response back.  If I setup two receivers in XI (one being R/3 and the other the file adapter, then it's crashing in XI saying since I cannot have two receivers for a synchronist request.)
    I was looking to use an ABAP proxy but from what I'm reading, it cannot be used in 4.6c.
    So what are my options? Is it only trough an IDoc that I can communicate out of R/3 to XI if my request don't required a response back?
    Thanks
    Yves

    Hi Yves.
    For a 4.6 R/3 system the only possible options are the RFC adapter and the Idoc adapter.
    The Idoc adapter is used for async processing (no reponse)
    The RFC adapter is used for sync processeing (and will therefore always expect a respons message)
    The File adapter also onlu supports async (no response) processing.
    There are two ways to solve your problem:
    1. Create a Idoc to file scenario
    2. Use the sync to async bridge
    On help.sap.com you can fing documentation on this scenario:
    http://help.sap.com/saphelp_nw04/helpdata/en/83/d2a84028c9e469e10000000a1550b0/frameset.htm
    Best regards,
    Alwin

  • Need Help with One to One Mapping in SQL

    Can aynone please design me tables in Oracle .
    I want to have a two tables with one to one mapping .
    Following is the scenario.
    I have an Employee object and a Parking Space Object. The have a one to one relation i.e., an employee will always be associated to only one parking space, that parking space should not be associated to any other employee.
    It would be a great help .

    sb92075 wrote:
    We don't do homework assignments.I used to do my own... seems like a novel concept now-a-days :)

  • Need help in Marketing scenario (I think difficult)

    Hi folks,
    Hi need some help in my marketing scenario. I posted the message in marketing section. You can see it in [Interesting and difficult marketing business process... any ideas?|Interesting and difficult marketing business process... any ideas?;
    Thanks to all in advance
    Javier

    Hi [email protected],
    I have cancelled your subscription, and set the refund process in motion.
    Your refund no.is 66228048.
    Regards,
    Florence

  • Need help on one odd query results...

    Hi Guys,
    I need your help,
    Requirement is :- Suppose we have got Below titles in one table :-
    HULK
    THE INCREDIBLE HULK - 2001 (DO NOT USE)
    REVERSE HULK
    INCREDIBLE HULK U/A
    BRING ME HEAD OF THE HULK
    JENNIFER JASON LEIGH, HULK HOGAN
    HULK 2
    BRIDE OF THE INCREDIBLE HULK
    HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD
    INCREDIBLE HULK #03 (1979/80)
    HULK HOGAN'S CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)
    Now the requirement is :-
    O/p Should be in below order without have duplicate records
    HULK first then
    HULK % then
    %HULK%.
    O/p :-
    HULK
    HULK 2
    HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD
    HULK HOGAN'S CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)
    THE INCREDIBLE HULK - 2001 (DO NOT USE)
    REVERSE HULK
    INCREDIBLE HULK U/A
    BRING ME HEAD OF THE HULK
    JENNIFER JASON LEIGH, HULK HOGAN
    BRIDE OF THE INCREDIBLE HULK
    INCREDIBLE HULK #03 (1979/80)
    How can we do it using sql query ? Is it possible to do it one query?
    Or need to use PL/SQL table etc?
    There should be no duplicate if we use more than one query or single query ..
    Can you help?

    tappusingh wrote:
    O/p Should be in below order without have duplicate records
    HULK first then
    HULK % then
    %HULK%. Maybe something like:
    SQL> WITH test_tab
      2         AS (SELECT   'HULK' col FROM DUAL
      3             UNION ALL
      4             SELECT   'THE INCREDIBLE HULK - 2001 (DO NOT USE)' FROM DUAL
      5             UNION ALL
      6             SELECT   'REVERSE HULK' FROM DUAL
      7             UNION ALL
      8             SELECT   'INCREDIBLE HULK U/A' FROM DUAL
      9             UNION ALL
    10             SELECT   'BRING ME HEAD OF THE HULK' FROM DUAL
    11             UNION ALL
    12             SELECT   'JENNIFER JASON LEIGH, HULK HOGAN' FROM DUAL
    13             UNION ALL
    14             SELECT   'HULK 2' FROM DUAL
    15             UNION ALL
    16             SELECT   'BRIDE OF THE INCREDIBLE HULK' FROM DUAL
    17             UNION ALL
    18             SELECT   'HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD' FROM DUAL
    19             UNION ALL
    20             SELECT   'INCREDIBLE HULK #03 (1979/80)' FROM DUAL
    21             UNION ALL
    22             SELECT   'HULK HOGAN''S CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)'
    23               FROM   DUAL)
    24    -- " end of test data "
    25    SELECT   DISTINCT col
    26      FROM   test_tab
    27  ORDER BY   CASE
    28                WHEN col = 'HULK' THEN 1
    29                WHEN col LIKE 'HULK%' THEN 2
    30                WHEN col LIKE '%HULK%' THEN 3
    31                ELSE 4
    32             END, col
    33  /
    COL
    HULK
    HULK 2
    HULK HOGAN'S CELEBRITY CHAMPIONSHIP WRESTLING #01 (2008/09)
    HULK HOGAN, DAVID WILLEY, NATASHA BEDINGFIELD
    BRIDE OF THE INCREDIBLE HULK
    BRING ME HEAD OF THE HULK
    INCREDIBLE HULK #03 (1979/80)
    INCREDIBLE HULK U/A
    JENNIFER JASON LEIGH, HULK HOGAN
    REVERSE HULK
    THE INCREDIBLE HULK - 2001 (DO NOT USE)
    11 rows selected.
    SQL>Regards,
    Jo

  • Need Help using One-Key to make a system back up to DVDs

    I bought U330 in Sept and now that I have some of my own programs installed and running, I want to make a backup to D (I think?) and also make backups to DVDs so I could make backups. 
    I'm no novice, but I cannot figure out the instructions for this. 
    When I pick  Backup, even at Max compression, it says I don't have enough space.   I don't have THAT much on D:---did I need to repartition this before I even started using this computer?  Does this mean I can never use One-Key? 
    When I pick Create Recover Disc (to make DVD backups), what do I do next? 
        The dropdown for "Select Source From" has only two options, I am guessing I have to pick "Select another image", but then I don't know what to pick for the Image path.    How do I pick the whole C drive ???   Or??   
    Please tell me exactly how to do this because I am finding LENOVO's instructions totally inadequate.     
    A couple times I got to the DVD burner--not sure how--but then it just wanted to burn the sample music files.    I'm feeling quite frustrated--this should not be this difficult!!

    I thought you've got error of another type - that error is fixed by simple software update.
    Regarding your case - it's always frightening in first time. Believe me - there's completely nothing to be afraid of.
    Resizing C drive may result killing your DATA on it only in case of energy is down during the process. Process is taking about 15-20 minutes on slow programs and about 3-4 minutes on fast programs. That means that even having problems with electricity you'll be able to finish everything correctly running on battery.
    I'd recommend using Acronis Disk director Suite, but it is not free. One of the best free progs for that are bootable Linux livecds PartedMagic and GParted. They're all intuitive understandable. 
    You will get your NOVO recovery feature lost after C resize, but you can enable it later, replacing that factory backup in hidden partition with your own backup - your NOVO button will restore your system with all your software and settings.
    it will be good for you to start with some basic principles on partitions organization schemes - why, what for and how questions are briefly explained here. After reading this you'll be able to ask right questions to get right answers.
    //help will save the world

  • Need Help on one Firewall Question

    Hi All,
    I am using cisco asa in my environment and which is connected to l2. One server and one router is also connected to L2. Now i want to access port 80 on my server from outside.
    How its possible if the server gateway is routers ip and i don't want to add static route in router or server towards the firewall. Nat and access List is done on firewall. what else i can do on firewall to access port 80 of my server from outside. Dont want to change anything on router/server.
    Below is the IP detail
    1. Firewall inside 192.168.1.1 & Outside 1.1.1.1
    2. Router IP - 192.168.1.2
    3. Server IP - 192.168.1.3 & GW - 192.168.1.2

    Hi,
    Well the only ways I could think that the connections could be gotten working would be
    Policy Based Routing on the Router that would forward the web servers traffic through the firewall instead of the routers default gateway (even just the return traffic for web connections)
    Configuring NAT on the ASA firewall so that all traffic from the Internet would be NATed to an internal IP address from the network 192.168.1.0/24. This would mean that the server would be sending the traffic to ASA instead of using its default gateway. And this is ofcourse because the server would be seeing all connections coming from its connected network and wouldnt have to use the default gateway.
    You havent mentioned what type of NAT you are doing on the ASA for the server Static PAT or Static NAT. Static PAT would be forwarding a single (or several ports) only while Static NAT would be dedicating a single public IP address for the server.
    I would imagine that you would have to configure 2 separate NAT statements
    Dynamic Policy PAT for the External hosts
    This should NAT all traffic coming from the Internet to the IP address of your ASAs "inside" interface WHEN the destination is the public IP address of your Web server.
    access-list POLICY-NAT-WEBSERVER remark NAT inbound web traffic to an internal IP address
    access-list POLICY-NAT-WEBSERVER permit tcp any host 1.1.1.1 eq 80
    nat (outside) 100 access-list POLICY-NAT-WEBSERVER
    global (inside) 100 interface
    Static NAT or Static PAT for Web server
    Either of these NAT configurations should forward the connections to your Web servers public IP address on port TCP/80 to the Web server.
    Together with the above NAT configuration the return traffic from the Web server should flow back through the ASA.
    static (inside,outside) 1.1.1.1 192.168.1.3 netmask 255.255.255.255
    or
    static (inside,outside) tcp 1.1.1.1 80 192.168.1.3 80 netmask 255.255.255.255
    If you are using the public IP address on the ASA "outside" interface then replace the 1.1.1.1 with "interface". The IP address 1.1.1.1 stands for a public IP address that you might use.
    Hope this helps
    Please do remember to mark a reply as the correct answer if it answered your question.
    Feel free to ask more if needed
    - Jouni

  • Need help on one req which is related to Jobs

    Hi,
    I have designed one Utility program which updates the data from One database table to another database table.
    This Utility program runs every day through Job over night.
    So I wanted to  give one option to my client so that if they perforn some action by pressing one button, i wanted to display the records which are updated to database table yesterday night.
    Can you pleae help me on this.Is it possible to go ahead with ALV Grid ?.

    Hi,
    There can be many possible ways of doing it. What my understanding is you want to display the entries which were updated by the job in previous run.
    1. check the table you are updating has any date and time signature or not, if yes select that data based on date and time signature and display in ALV.
    2.Before updating the tables by Job data must be in some table. Save that internal table as file in application server and when you want to display it , read the file and display it in ALV.
    3. create another custom table with extra date and time signature and update them also with same data as what done by job. then while you want to display the same to user read this table to display them.
    4.As told earlier read from spool.
    You need to decide what you want depending on the conditions at ur end.
    Regards
    Anurag

  • I need help with one chapter of the Logic training series book...

    I've been studying from the Apple Pro training series manual - Logic pro 9, Professional Audio Production. I'm keen to sit the exam asap, and move onto the next book in the series, but may need a little coaching on one chapter - namely Appendix A, 'Using External MIDI devices.' I've never used Logic in this way, and only have one MIDI piano to work with at home. Therefore recreating what is required in the chapter, and getting my head around the material is proving difficult. Therefore I have two questions - 1) Will this section be tested in the exam?  And if so, 2) Is there anyone in the Berkshire / Surrey / West London area who could help me with a quick lesson? (I'd be prepared to pay, obviously) I've been using Logic for a number of years, so would prefer not to have to spend serious money on a full blown course.
    I'm keen to sit the exam over half term if possibe - w/c 4th June 2012.
    Thanks for your help.
    Arron

    Hi
    Appendix A covers setting up Audio MIDI Setup for a "real" external Synth, and then getting Logic to create a track to send MIDi out to that Synth. Finally, you set up the Program names.
    You should be able to go through the first part (and do it) providing you have some kind of MIDI Interface showing up in AMS. Create a "dummy" MIDI 'Synth' and cable it up.
    Once done, this 'dummy' synth will appear in Logic's Library for External Instrument tracks. Without an real synth you will not be able to hear any results.
    You could run through the process for setting up the program names, but without something actually attached, you will not be able to hear/see the changes.
    You could run in 32bit mode and use the "Software" quicktime synth, or maybe sort something using an IAC bus, but frankly, that's more likely to confuse the **** out of you at this stage.
    HTH
    CCT

  • Need help for a scenario

    Hi all,
    There are 6 DSOs .Let them be A1,A2,B1,B2,C1,C2.
    I need data union of 2 dsos.
    Means union of A1,A2  and union of B1,B2 and union of C1,C2.A1
    Then I need common records(JOIN) of three sets.All the fields in A1,A2 are not the same.There will be small differences.
    Can anyone suggest the possible ways to approach this scenario.

    Hi,
    You can create 3 DSOs to get the union from two - two DSOs. Meaning your A1 and A2 will feed DSO D1, B1 and B2 will feed DSO D2, similarly C1 and C2 will feed DSO D3. This way you will get Unions in D1, D2 and D3.
    Now to get common data (Joins) from these three DSOs, create an InfoSet based on D1, D2 and D3. This will give you intersection of D1, D2, and D3.
    Hope it helps.
    Regards,
    Yogesh.

  • Hey new to Macs need help getting one(s) running again...

    Hey all,
    So I acquired some old Macs from a local schools surplus sale. I have managed to get one operational (a G3 tower) but am now trying to get a MacBook running and have had a few issues. I have gotten it to the flashing folder screen but have been unable to get it to boot from the HDD. The HDD drive works I have installed OSX 10.3 on the drive via firewire but it seems that the Mac wont recognize that the drive is there. When I get into the Startup Manager screen nothing shows up except the mouse (which I can move around). The MacBook is an a1181 with 1GB of Ram installed. Being new to Macs I have no clue on how to continue. I know Macs do not have a BIOS but is there something similar that can be accessed? What about Firmware updating? I would prefer not to have to take it (and others) to the local Apple store. Any and all help would be much appreciated.
    Thanks.

    I have the same MacBook (a1181) and had the same problem. My solution was to simply re-install snow leopard. Just buy a snow leopard CD from the apple store. Don't buy a mountian lion CD because it is not compatible with your MacBook. One you have the SL CD, insert it into the optical drive (CD drive) and boot the computer. When you hear the chime, press and hold down "C" on the keyboard and it should boot. If this fails, reboot and brews and hold option/alt when you hearths chime, then select the CD as it appears. Then simply install snow leopard, and enjoy your Mac! Hope this helps, and I will be happy to help with any problems or questions :)

  • Need help with this scenario....

    Hi, here I want the out amount to be calculated with the variable ranges..
    I attached the report output.
    I took doc.no and doc.date in column,
    restricted doc.date with current day ( date changed to  05.05.2006)
    2 variables as manual entry, 2 variables as customer exit.
    with those manual entry variables i calculated different dates for 2 customer exit variables using ABAP
    everything is going fine till here.
    when i drag amount in a selection n restrict it with range of customer exit variables in doc.date
    the output does not shows the value for the range
    its just show the output  for the particular date 
    dates
    05.05.2006
    05.04.2006
    i want the output to show the total sum of amount for 30 days (or the no. which user enters)

    Hi Praveen,
    i hope this is what your requirement(sample output as below):-
    Customer
    Amount(01.05.2006 - 05.05.2006)
    Amount(06.05.2006 - 10.05.2006)
    C1
    $100
    $500
    C2
    $200
    $700
    if so, can we do this way: on KF1, restrict the document date with user input variable 1
    and KF2 with user input variable 2.
    if user enters first user input variable as  01.05.2006 - 05.05.2006
    and the same way for the second one. in that case, no  need of further logic to determine the variable ranges.
    Let us know if this works?
    Regards,
    Sakthi.

  • 2 minor issues need help with one BBM and one email

    I am hoping someone can help with this
    the BBM issue is one of my contacts that has the z10 doesn't show option for my to video chat with him all my other contacts do and he has it displayed on his side and all his options are set same as mine
    second question is since i set up my activesync email it has pushed a password on my phone everytime it goes to sleep and i go to options and cannot turn off the device password option.
    Hope someone has some ideas

    It sounds like the account you connected to for ActiveSync has an IT policy that requires the password. You can't get around it. You'd have to talk to them.
    For BBM, have you verified the PIN is correct on each end? Can you BBM directly with this person? You both have to be on wifi, as well.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • Need help in design scenario

    Hi experts,
    I have a scenario in which XI put an xml file in a destination server (very simple scenario, SAP>Proxy>File receiver CC).
    The new request is: to make a call to SAP after having put file in destination.
    In this call I have to write to SAP that file has been written successfully to destination.
    My collegues told me to add a RFC call to SAP in my scenario, is it the correct way?
    I'm not skilled about that.
    Thanks
    Fabio Boni

    Hi Fabio,
    If you want to achive this scenarion without BPM then you need to create 2 diffrent scneraio,.
    !) Your first scnario:
    SAP -Proxy-File receiver( It will write the file in Folder A)
    2) Second scenario:
    File sender to RFC receiver
    File sender will poll the folder A for files.If file is available in Folder A then this 2nd scenarion will trigger.
    Create some constant mapping in the target RFC structure. and make a call to RFC using receiver RFC adapter.
    So here If you pick the file from Folder A then you need to delete it or Archive it from the source folder.
    Sender file adapter has both the options of delete or Archive.
    If you archive the file to folder B in sender file adapter  itself then your receiver RFC can find the File from Folder B.

Maybe you are looking for